Some checks failed
Run Build / dotnet (push) Failing after 1m46s
May not work, Testing this runner..
15 lines
298 B
YAML
15 lines
298 B
YAML
name: Run Build
|
|
run-name: ${{ gitea.actor }} building code
|
|
on: push
|
|
|
|
jobs:
|
|
dotnet:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: actions/setup-dotnet@v5
|
|
with:
|
|
dotnet-version: 10.x
|
|
cache: true
|
|
- run: dotnet build cssitegen
|