Skip to content

0.6.0

0.6.0 #16

Workflow file for this run

name: Build and Test
on:
pull_request:
branches:
- '**'
push:
branches:
- 'main'
jobs:
build-and-test:
name: Build and Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2022, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: 'Run Unit Tests'
run: dotnet test './tests/ProxyInterfaceSourceGeneratorTests/ProxyInterfaceSourceGeneratorTests.csproj' -c Debug