Run Makefile Commands #17
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: Run Makefile Commands | |
on: | |
push: | |
paths: | |
- '**/Makefile' | |
pull_request: | |
paths: | |
- '**/Makefile' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Make | |
run: sudo apt-get update && sudo apt-get install -y make | |
- name: Run Makefile Commands | |
run: | | |
make clean | |
make install_python_requirements | |
make check_stubs_configs_file | |
make generate_python_protos |