Renamed dir
This commit is contained in:
parent
0c15c93150
commit
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-24.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