From b77185fdc8605c62f87f6e97c57a2279e32edadd Mon Sep 17 00:00:00 2001 From: mcmuzzle Date: Thu, 29 Aug 2024 19:58:17 +0200 Subject: [PATCH] retour check main --- .gitea/workflows/Main.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitea/workflows/Main.yaml diff --git a/.gitea/workflows/Main.yaml b/.gitea/workflows/Main.yaml new file mode 100644 index 0000000..a40127d --- /dev/null +++ b/.gitea/workflows/Main.yaml @@ -0,0 +1,24 @@ +name: check main state + +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 \ No newline at end of file -- 2.49.1