This repository has been archived by the owner on May 6, 2024. It is now read-only.
chore: update test cases with app nav design #495
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: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
run-pylint: | |
name: lint | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.6', '3.8'] | |
steps: | |
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." | |
- uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: | | |
pip install -r requirements/ci.txt | |
- name: Run pylint commands | |
run: | | |
pycodestyle . | |
pylint tests |