website/.forgejo/workflows/build.yaml
2023-12-04 19:45:17 -06:00

20 lines
No EOL
361 B
YAML

name: dotnet build
on:
push:
branches:
- main
jobs:
build:
runs-on: docker
container:
image: mcr.microsoft.com/dotnet/sdk:8.0
steps:
- uses: actions/checkout@v3
- name: dotnet restore
run: dotnet restore
- name: dotnet build
run: dotnet build
- name: dotnet test
run: dotnet test