Merge pull request #8 from aka-nse/release/v1.1.0 #26
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: .NET Core CI | |
| on: | |
| push: | |
| branches: [ "main", "develop" ] | |
| pull_request: | |
| branches: [ "main", "develop" ] | |
| jobs: | |
| build-and-test: | |
| runs-on: [windows-latest] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '10.0.x' | |
| - name: Restore dependencies | |
| run: dotnet restore PathBench.slnx | |
| - name: Build solution | |
| run: dotnet build PathBench.slnx --no-restore | |
| - name: Run tests | |
| run: dotnet test PathBench.slnx --no-build --verbosity normal |