From 287c1402e790a06f95a663ac1a7d4a8039afd2ee Mon Sep 17 00:00:00 2001 From: shiva Date: Wed, 22 May 2024 17:38:22 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20.forgejo/workflows/build.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .forgejo/workflows/build.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .forgejo/workflows/build.yml diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml new file mode 100644 index 0000000..87a271c --- /dev/null +++ b/.forgejo/workflows/build.yml @@ -0,0 +1,18 @@ +name: Build dotnet project +run-name: ${{ github.actor }} is building! +on: [push, pull_request] +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + dotnet: [ '8.x' ] + name: Dotnet ${{ matrix.dotnet }} matrix test + steps: + - uses: actions/checkout@v4 + - name: Setup dotnet + uses: actions/setup-dotnet@v4 + with: + dotnet-version: ${{ matrix.dotnet }} + - name: Execute dotnet + run: dotnet build \ No newline at end of file