Bump pylint from 3.3.2 to 3.3.3 #491
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, test and package | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install pipenv | |
run: | | |
python -m pip install --upgrade pip | |
pip install pipenv | |
- name: Install dependencies | |
run: pipenv install --dev | |
- name: Run minimal linting | |
run: pipenv run lint-minimal | |
- name: Run mypy scan | |
run: pipenv run typecheck | |
- name: Run test cases | |
run: pipenv run test | |
- name: Package | |
run: | | |
pipenv run package | |
pipenv run package-onefile | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ffsds4-amd64 | |
path: dist/* |