Added github packages #110
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: CI | |
| on: | |
| pull_request: | |
| branches: [ "**" ] | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET (8 LTS and 10 GA) | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: | | |
| 8.0.x | |
| 10.0.x | |
| dotnet-quality: 'ga' | |
| - name: Restore | |
| run: dotnet restore src/Coven.sln | |
| - name: Build | |
| run: dotnet build src/Coven.sln --configuration Release --no-restore | |
| - name: Test | |
| run: dotnet test src/Coven.sln --configuration Release --no-build |