Refactor for the newest PMAT #25
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: Python CI | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- uses: ./.github/actions/python_prepare | |
- name: Run mypy | |
run: poetry run mypy | |
pytest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- uses: ./.github/actions/python_prepare | |
- name: Run pytest | |
run: poetry run pytest tests | |
test-build-image: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Build and push Docker image | |
uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 | |
with: | |
push: false | |
black: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/python_prepare | |
- name: Check with black | |
run: poetry run black --check . | |
autoflake: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/python_prepare | |
- name: Check with autoflake | |
run: | | |
poetry run autoflake --in-place --remove-all-unused-imports --remove-unused-variables --recursive . | |
git diff --exit-code --quiet || exit 1 | |
isort: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/python_prepare | |
- name: Check with isort | |
run: | | |
poetry run isort --profile black . | |
git diff --exit-code --quiet || exit 1 |