From 5af7a7401a41b2d4caf21fe303ab753eb7adfbba Mon Sep 17 00:00:00 2001 From: Louis Date: Tue, 28 Nov 2023 23:10:06 +0100 Subject: [PATCH] ci: :construction_worker: Create ci v1 --- .gitea/workflows/moulinette.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitea/workflows/moulinette.yml diff --git a/.gitea/workflows/moulinette.yml b/.gitea/workflows/moulinette.yml new file mode 100644 index 0000000..6bf4006 --- /dev/null +++ b/.gitea/workflows/moulinette.yml @@ -0,0 +1,23 @@ +name: CI + +on: + push: + tags: + - 'archi-${{ env.PROJECT_TO_TEST }}' + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: ${{ env.PROJECT_TO_TEST }} + + - uses: actions/setup-dotnet@v3 + with: + dotnet-version: '7.0.x' + - name: "🏗️ Build" + run: dotnet build + - name: "✅ Test" + run: dotnet test