Files
LittleTown/.gitea/workflows/tests.yaml
mcmuzzle cdaf98297c
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6s
dotnet package / build (8.0.x) (push) Failing after 22s
test
2024-05-31 22:59:58 +02:00

30 lines
679 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'
- name: List files in the repository
run: |
ls
- name: List files in the repository2
run: |
pwd
- name: Install dependencies
run: dotnet restore .\src\LittleTown.sln
- name: Build
run: dotnet build .\src\LittleTown.sln
- name: Test with the dotnet CLI
run: dotnet test .\src\LittleTown.sln