summaryrefslogtreecommitdiff
path: root/.gitea/workflows/test.yaml
blob: ad08f94449a951e141b4ce6ef3e310e48d75f4c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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