26 lines
388 B
YAML
26 lines
388 B
YAML
|
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
|