mv thumbnail_tracker to remo-fig-gen #861
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: type-checking | |
on: [push,pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
- name: install checking requirements | |
run: | | |
pip install --upgrade pip | |
pip install ruff==0.0.253 | |
- name: ruff | |
run: ruff lfm_data_utilities --ignore E501 --ignore E722 --ignore E741 |