ci/fix: dont care python micro version #550
Workflow file for this run
This file contains hidden or 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 | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
pull_request: | |
branches: | |
- master | |
- dev | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: pip install formatters | |
run: | | |
pip3 install black==22.6.0 isort flake8 autoflake | |
- name: install clang-format | |
run: | | |
sudo apt-get update | |
sudo apt-get install clang-format | |
- name: check | |
run: | | |
bash format.sh |