Skip to content

Merge branch 'main' of https://github.com/JulianLfdr/AdventOfCode #4

Merge branch 'main' of https://github.com/JulianLfdr/AdventOfCode

Merge branch 'main' of https://github.com/JulianLfdr/AdventOfCode #4

Workflow file for this run

name: .NET CI
on:
push:
branches: [ main ]
defaults:
run:
working-directory: src/
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x'
- run: dotnet restore
- run: dotnet build --no-restore
- run: dotnet test --no-build --verbosity normal