From b3dc220ac08435474be52dfc8940cde643765613 Mon Sep 17 00:00:00 2001 From: Johan Lundberg Date: Tue, 1 Apr 2025 21:18:34 +0200 Subject: [PATCH] add build action --- .forgejo/workflows/actions.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .forgejo/workflows/actions.yml diff --git a/.forgejo/workflows/actions.yml b/.forgejo/workflows/actions.yml new file mode 100644 index 0000000..cecf3f3 --- /dev/null +++ b/.forgejo/workflows/actions.yml @@ -0,0 +1,11 @@ +on: [push] +jobs: + test: + runs-on: docker + steps: + - uses: actions/checkout@v4 + - name: Setup dotnet + uses: https://github.com/actions/setup-dotnet@v4 + with: + dotnet-version: '4.5' + - run: dotnet build