Skip to content

Upgrades and basic CI #10

Upgrades and basic CI

Upgrades and basic CI #10

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
DOTNET_NOLOGO: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Run tests
run: dotnet test --no-build --configuration Release --logger "GitHubActions"