ajout d'un debut de CI
Some checks failed
check main state / build (9.0.x) (push) Failing after 1m52s

This commit is contained in:
2025-03-26 22:28:06 +01:00
parent 899b1771d0
commit b4a93c6e46

View File

@@ -0,0 +1,26 @@
name: check main state
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '9.0.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '9.0.x'
- name: Install dependencies
run: dotnet restore ./Giants.sln
- name: Build
run: dotnet build ./Giants.sln
- name: Check format
run: dotnet format
- name: Test with the dotnet CLI
run: dotnet test ./Giants.sln