Add workflow_dispatch trigger for manual testing #1
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: C/C++ CI | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: make | |
run: | | |
make | |
make clean | |
make DEBUG=1 | |
make clean | |
make SYSTEMD=1 | |
make clean | |
make USE_SYSLOG=1 | |
make clean | |
make OLD_FUNCTIONFS_DESCRIPTORS=1 |