fix(ci): Updated python version in CI actions #73
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 | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2-beta | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: cd cl && pip install -r recap_email/requirements.txt && pip install -r tests/requirements.txt | |
- name: Black Code Formatter | |
uses: psf/black@stable | |
- name: Run flake8 | |
uses: suo/flake8-github-action@releases/v1 | |
with: | |
checkName: 'lint' # NOTE: this needs to be the same as the job name | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: isort Import Sorter | |
uses: isort/isort-action@v0.1.0 | |
- name: pylint Error Checker | |
run: pylint --fail-under 9 -f colorized cl | |
- name: mypy Static Type Checker | |
run: mypy --ignore-missing-imports . | |
lint-report: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2-beta | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: cd cl && pip install -r recap_email/requirements.txt && pip install -r tests/requirements.txt | |
- name: pylint Generate Report | |
run: > | |
pylint --exit-zero --load-plugins=pylint_json2html -f jsonextended cl | | |
pylint-json2html -f jsonextended -o pylint-report.html | |
- name: Upload report | |
uses: actions/upload-artifact@v2 | |
with: | |
name: pylint report | |
path: pylint-report.html |