summaryrefslogtreecommitdiff
path: root/.gitea/workflows/test.yaml
blob: 9a7351ff64ef37e19fe5d2dd0d767c931643bb58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: Test API

on:
  push:
    branches:
      - "master"
  workflow_dispatch:

jobs:
  test:  
    env: 
      RUNNER_TOOL_CACHE: /toolcache
    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