Skip to content

Bump mypy from 1.13.0 to 1.14.1 #492

Bump mypy from 1.13.0 to 1.14.1

Bump mypy from 1.13.0 to 1.14.1 #492

Workflow file for this run

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/*