package/balena-engine: bump to version 20.10.40 #80
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: buildroot-style-check | |
on: | |
pull_request: | |
branches: [ 'chargepoint/**' ] | |
jobs: | |
buildroot_package_check: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
- name: Python setup | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Run buildroot package checks | |
run: | | |
pip install --upgrade pip | |
pip install --upgrade six python-magic | |
python3 utils/check-package -v **/*.mk | |
python3 utils/check-package -v **/Config.in* | |