all branches now? #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: unit-testing | |
on: | |
push: | |
branches: ['*'] | |
release: | |
types: [published] | |
repository_dispatch: | |
types: [udf-dispatch] | |
jobs: | |
testing: | |
name: Compile and run unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Test all units | |
run: make unit-testing | |
- name: Clean | |
run: make clean |