Skip to content

.net 8.0 migration

.net 8.0 migration #3

Workflow file for this run

name: pull-request
on:
- pull_request
jobs:
pull-request:
name: pull-request
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
env:
DOTNET_NOLOGO: true
steps:
- name: checkout
uses: actions/checkout@v2
- name: install dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: install packages
run: dotnet restore
- name: build
run: dotnet build
- name: test
run: dotnet test