Skip to content

Ubuntu

Ubuntu #24

Workflow file for this run

name: Ubuntu
on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # avoid shallow clone so that nbgv can do its work.
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.*
- name: Build
run: dotnet build --framework net8.0
- name: Test
run: dotnet test --no-build --verbosity normal --framework net8.0