Skip to content

GitHub Actions - test, format, do-not-merge #5

GitHub Actions - test, format, do-not-merge

GitHub Actions - test, format, do-not-merge #5

Workflow file for this run

name: Driver tests
on:
pull_request:
jobs:
dotnet-test:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '8.0.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal