aoc2023/.github/workflows/ci.yml

24 lines
387 B
YAML
Raw Normal View History

2023-12-05 00:16:22 -06:00
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