-
Notifications
You must be signed in to change notification settings - Fork 6
57 lines (48 loc) · 1.26 KB
/
rocky_testing.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Testing with Rocky docker
on:
push:
branches:
- 'main'
- 'release-*'
pull_request:
paths:
- '**'
- '!docs/**'
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
# It is hosted on Ubuntu but the docker image is built on Rocky
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Pre-load docker image
run: docker pull ghcr.io/mantidproject/mantidimaging:rocky8
- name: List versions
uses: ./.github/actions/test
with:
command: python --version; conda list ; pip list
label: rocky8
- name: yapf
uses: ./.github/actions/test
with:
command: yapf --parallel --diff --recursive .
label: rocky8
- name: ruff
uses: ./.github/actions/test
with:
command: ruff check .
label: rocky8
- name: mypy
uses: ./.github/actions/test
with:
command: mypy --ignore-missing-imports mantidimaging
label: rocky8
- 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: rocky8