From fbb8064e2e074b713eecd591faa2614c5c77f1f1 Mon Sep 17 00:00:00 2001 From: mcmuzzle Date: Fri, 31 May 2024 22:51:44 +0200 Subject: [PATCH] setup dotnet --- .gitea/workflows/tests.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitea/workflows/tests.yaml diff --git a/.gitea/workflows/tests.yaml b/.gitea/workflows/tests.yaml new file mode 100644 index 0000000..421ae20 --- /dev/null +++ b/.gitea/workflows/tests.yaml @@ -0,0 +1,21 @@ +name: dotnet package + +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' + # You can test your matrix by printing the current dotnet version + - name: Display dotnet version + run: dotnet --version \ No newline at end of file