Files
Test/.gitea/workflows/buildproject.yaml
Fynn Wittich edebb250ab
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 9s
Gitea Actions Demo / Dotnet 8.0.12 sample (push) Has been cancelled
Update buildproject.yaml, GiteaTest.csproj.user, PublishLinuxX64.pubxml, and 3 more files
2025-01-18 17:24:05 +01:00

19 lines
459 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet: [ '8.0.12' ]
name: Dotnet ${{ matrix.dotnet }} sample
steps:
- uses: actions/checkout@master
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
- run: dotnet build GiteaTest.sln