summaryrefslogtreecommitdiff
path: root/.gitea/workflows
diff options
context:
space:
mode:
authorSerghei Cebotari <serghei@cebotari.ru>2024-01-23 23:29:16 +0300
committerSerghei Cebotari <serghei@cebotari.ru>2024-01-23 23:29:16 +0300
commitb0b1008adea46a45b2481393597d75e2b2dbee67 (patch)
tree594b3e55c8f745ee0039181fce20125fbc9c0bc1 /.gitea/workflows
parent46cde9fda5e2c1f7b01d05e9a8b270f026cb6742 (diff)
Add Gitea action for testing
Diffstat (limited to '.gitea/workflows')
-rw-r--r--.gitea/workflows/test.yaml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml
new file mode 100644
index 0000000..ad08f94
--- /dev/null
+++ b/.gitea/workflows/test.yaml
@@ -0,0 +1,19 @@
+name: Test API
+
+on:
+ push:
+ branches:
+ - "master"
+ workflow_dispatch:
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - name: Setup .NET 8.0
+ uses: actions/setup-dotnet@v3
+ with:
+ dotnet-version: '8.0'
+ - name: Test
+ run: dotnet test \ No newline at end of file