rescale_with_baseline
default value changed
#13
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 the module | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
# needs: NOTHING | |
lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Pip Update | |
run: | | |
make -s update-pip | |
- name: Lint Dependency Installation | |
run: | | |
make -s install-lint | |
- name: Lint the Project | |
run: | | |
make -s lint |