Files
LittleTown/.gitea/workflows/tests.yaml
mcmuzzle fbb8064e2e
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s
dotnet package / build (8.0.x) (push) Successful in 28s
setup dotnet
2024-05-31 22:51:44 +02:00

21 lines
440 B
YAML

name: dotnet package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '8.0.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
# You can test your matrix by printing the current dotnet version
- name: Display dotnet version
run: dotnet --version