Compare commits
2 commits
0c15c93150
...
8476bf9a7e
Author | SHA1 | Date | |
---|---|---|---|
8476bf9a7e | |||
90497de12b |
1 changed files with 25 additions and 0 deletions
25
.forgejo/workflows/units.yml
Normal file
25
.forgejo/workflows/units.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
Name: Unit Tests
|
||||
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ 'master', 'main', 'release/**' ]
|
||||
pull_request:
|
||||
branches: [ '*' ]
|
||||
|
||||
jobs:
|
||||
unit_test:
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: true
|
||||
|
||||
- name: Build unit tests
|
||||
run: |
|
||||
make unit
|
||||
|
||||
- name: Run unit tests
|
||||
run: |
|
||||
test/unit/unit
|
Loading…
Reference in a new issue