Bumb version to 1.0.2 #55
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Run .NET Unit Tests | |
| on: [pull_request, workflow_dispatch] | |
| jobs: | |
| test: | |
| name: Run Unit Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '9.0.x' | |
| - name: Restore dependencies | |
| run: dotnet restore Appegy.Union.Generator~/Appegy.Union.Generator.slnx | |
| - name: Build solution | |
| run: dotnet build Appegy.Union.Generator~/Appegy.Union.Generator.slnx --configuration Release --no-restore | |
| - name: Run tests | |
| run: dotnet test Appegy.Union.Generator~/Appegy.Union.Generator.Tests/Appegy.Union.Generator.Tests.csproj --configuration Release --no-build --verbosity normal |