website/.forgejo/workflows/build.yaml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 14: cannot unmarshal !!seq into model.Job
2023-12-10 01:15:35 -06:00

20 lines
No EOL
342 B
YAML

name: dotnet build
on:
push:
branches:
- main
jobs:
build:
runs-on: docker
container:
image: nseguin42/forgejo-runner:latest
steps:
- uses: actions/checkout@v4
- name: dotnet restore
run: dotnet restore
- name: dotnet build
run: dotnet build
- name: dotnet test
run: dotnet test