add requirements.txt to trigger files of set new version tag #165
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: Check that new changes can build or not | |
on: | |
push: | |
branches: | |
- '*' | |
- '!master' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.ref }} | |
- name: Install dependencies | |
run: | | |
make install_python_requirements | |
- name: Build | |
run: | | |
make generate_python_protos |