Some checks failed
Run Build / dotnet (push) Failing after 25s
Remove caching from runner config as no package.lock.json is set up as of yet. Future re-architecting may make this necessary
14 lines
276 B
YAML
14 lines
276 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
|
|
- run: dotnet build cssitegen
|