test1
Some checks failed
Main Build Process / Build & Test (pull_request) Failing after 1m11s

This commit is contained in:
2026-02-06 19:48:58 +01:00
parent c72d511d3a
commit f1a805fce2

View File

@@ -1,24 +0,0 @@
name: check main state
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '10.0.x' ]
steps:
- uses: actions/checkout@v6
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '10.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