website/.forgejo/workflows/build.yaml
2023-12-10 00:47:07 -06:00

19 lines
No EOL
355 B
YAML

name: dotnet build
on:
push:
branches:
- main
jobs:
build:
runs-on: docker
uses: https://git.nseguin.dev/nseguin/dotnet-build
steps:
- uses: actions/checkout@v4
- name: dotnet restore
run: dotnet restore
- name: dotnet build
run: dotnet build
- name: dotnet test
run: dotnet test