Skip to content

.net 8.0 migration

.net 8.0 migration #32

Workflow file for this run

name: push
on:
- push
jobs:
push:
name: push
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