2105 GitHub actions use makefile #6398
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: Testing with Ubuntu 18 docker | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'release-*' | |
pull_request: | |
merge_group: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Pre-load docker image | |
run: docker pull ghcr.io/mantidproject/mantidimaging:ubuntu18 | |
- name: List versions | |
uses: ./.github/actions/test | |
with: | |
command: python --version; conda list ; pip list | |
label: ubuntu18 | |
- name: yapf | |
uses: ./.github/actions/test | |
with: | |
command: yapf --parallel --diff --recursive . | |
label: ubuntu18 | |
- name: ruff | |
uses: ./.github/actions/test | |
with: | |
command: ruff . | |
label: ubuntu18 | |
- name: mypy | |
uses: ./.github/actions/test | |
with: | |
# COMPAT: applitools has some bad signatures, so use --no-site-packages | |
command: mypy --ignore-missing-imports --no-site-packages mantidimaging | |
label: ubuntu18 | |
- name: pytest | |
timeout-minutes: 5 | |
uses: ./.github/actions/test | |
with: | |
command: xvfb-run pytest -n auto -o log_cli=true --ignore=mantidimaging/eyes_tests --durations=10 | |
label: ubuntu18 |