This commit is contained in:
parent
0cbce3c165
commit
0d4015b07e
1 changed files with 13 additions and 0 deletions
13
.forgejo/workflows/test.yml
Normal file
13
.forgejo/workflows/test.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name: test
|
||||
on: [push]
|
||||
jobs:
|
||||
unit-test:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: "Setup .NET"
|
||||
uses: https://github.com/actions/setup-dotnet@v3
|
||||
with:
|
||||
dotnet-version: 7.0.113
|
||||
- name: "Unit test"
|
||||
run: dotnet test
|
Loading…
Reference in a new issue