aoc2023/.github/workflows/ci.yml
2023-12-05 06:16:22 +00:00

24 lines
387 B
YAML

name: CI
on:
push:
jobs:
build-and-run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build -c Release
- name: Solve all
run: dotnet run -c Release --no-build -- all
working-directory: ./AdventOfCode