da14fb3a42
Bumps the actions-deps group with 1 update: [actions/setup-python](https://github.com/actions/setup-python). Updates `actions/setup-python` from 6 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps ... Signed-off-by: dependabot[bot] <support@github.com>
16 lines
414 B
YAML
16 lines
414 B
YAML
name: Linting with flake8, etc
|
|
on: [workflow_dispatch, workflow_call]
|
|
jobs:
|
|
linter:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/setup-python@v7
|
|
with:
|
|
python-version: "3.x"
|
|
- run: pip install --upgrade .[develop]
|
|
- run: python -We:invalid -m compileall -f mpmath -q
|
|
- run: flake518 mpmath
|