summaryrefslogtreecommitdiff
path: root/.gitea/workflows/test.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.gitea/workflows/test.yaml')
-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