This repository has been archived by the owner on Dec 2, 2024. It is now read-only.
Update README.md #20
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: Lint Checks | |
on: | |
push: | |
branches: | |
- develop | |
- release-* | |
pull_request: | |
branches: | |
- develop | |
- release-* | |
jobs: | |
lint: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-18.04] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '2.x' | |
architecture: 'x64' | |
- name: Setup | |
run: bash scripts/setup.sh || exit 1 | |
- name: Install Third Party libraries | |
run: bash scripts/install_third_party.sh | |
- name: Run Lint Checks | |
run: python scripts/pre_commit_linter.py --path=. |