Verify #396
This file contains 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: Verify | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '40 4 * * *' | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_NOLOGO: true | |
DOTNET_VERSION: 7.0.x | |
jobs: | |
check: | |
name: Check style | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
- run: dotnet format --no-restore --verify-no-changes src/NBrowse.sln | |
build: | |
name: Build for ${{ matrix.dotnet.framework }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
dotnet: # https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/releases-index.json | |
- framework: net6.0 | |
- framework: net7.0 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
- run: dotnet build src/NBrowse.sln --framework ${{ matrix.dotnet.framework }} | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
- run: dotnet build src/NBrowse.sln --framework net7.0 | |
- run: dotnet test src/NBrowse.Test --framework net7.0 --no-build --no-restore | |
- run: dotnet test src/NBrowse.CLI.Test --framework net7.0 --no-build --no-restore |