name: Unit Tests
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '0 8 * * *'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
name: Run unit tests
|
|
|
|
steps:
|
|
- name: Checkout source
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Update APT cache
|
|
run: |
|
|
sudo apt-get update
|
|
|
|
- name: Get build dependencies
|
|
run: |
|
|
sudo apt-get build-dep -qq -y -Ppkg.ngcp-rtpengine.nobcg729 .
|
|
|
|
- name: Run unit tests with sanitizers enabled
|
|
run: |
|
|
make asan-check
|