Bump .NET SDK from 6.x to 8.x #62
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: .NET Core | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 3.1.101 | |
- name: Install dependencies (z80) | |
run: dotnet restore z80 | |
- name: Install dependencies (z80.tests) | |
run: dotnet restore z80.tests | |
- name: Build (z80) | |
run: dotnet build z80 --configuration Release --no-restore | |
- name: Test (z80.tests) | |
run: dotnet test z80.tests --configuration Release --no-restore --verbosity normal | |
- name: Install dependencies (emulator) | |
run: dotnet restore emulator | |
- name: Install dependencies (emulator.tests) | |
run: dotnet restore emulator.tests | |
- name: Build (emulator) | |
run: dotnet build emulator --configuration Release --no-restore | |
- name: Test (emulator.tests) | |
run: dotnet test emulator.tests --configuration Release --no-restore --verbosity normal |