Add threads for PG electrical thread #16
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: make | |
on: | |
pull_request: # PR into master (=release) | |
branches: | |
- master | |
pull_request_target: # PR (from fork) into develop. | |
branches: # Uses workflow defined in base, not in fork. | |
- develop | |
workflow_dispatch: # to trigger workflow manually | |
jobs: | |
make_test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Clean up | |
run: make clean | |
- name: Build | |
run: make | |
- name: Run tests | |
run: make test |