Bump LangVersion to 12 #242
Workflow file for this run
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
on: push | |
jobs: | |
ubuntu-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Build | |
run: dotnet build ./src/AutoTests.Framework.sln | |
- name: Test on .net 6 | |
run: dotnet test --no-build --no-restore --framework net6.0 ./src/AutoTests.Framework.sln | |
- name: Test on .net 7 | |
run: dotnet test --no-build --no-restore --framework net7.0 ./src/AutoTests.Framework.sln | |
- name: Test on .net 8 | |
run: dotnet test --no-build --no-restore --framework net8.0 ./src/AutoTests.Framework.sln | |
windows-tests: | |
runs-on: windows-latest | |
steps: | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Build | |
run: dotnet build ./src/AutoTests.Framework.sln | |
- name: Test | |
run: dotnet test --no-build --no-restore ./src/AutoTests.Framework.sln |