This commit is contained in:
parent
8476bf9a7e
commit
58eeefda8f
2 changed files with 8 additions and 25 deletions
|
@ -16,6 +16,14 @@ jobs:
|
|||
with:
|
||||
submodules: true
|
||||
|
||||
- name: Update repo
|
||||
run: |
|
||||
sudo apt-get update
|
||||
|
||||
- name: Install check
|
||||
run: |
|
||||
sudo apt-get -y install check
|
||||
|
||||
- name: Build unit tests
|
||||
run: |
|
||||
make unit
|
||||
|
|
|
@ -1,25 +0,0 @@
|
|||
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