Some checks failed
Run Build / dotnet (push) Failing after 25s
Testing where we are and what we can see when we run dotnet build
16 lines
309 B
YAML
16 lines
309 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: pwd
|
|
- run: ls
|
|
- run: dotnet build cssitegen
|