Files
LittleTown/.gitea/workflows/tests.yaml
Workflow config file is invalid. Please check your config file: EOF
mcmuzzle 8f9eefdedf
Some checks failed
Main Build Process / Build & Test (pull_request) Failing after 2m6s
suite
2024-08-26 00:02:55 +02:00

24 lines
575 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: 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