24 lines
387 B
YAML
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
|