-
Notifications
You must be signed in to change notification settings - Fork 50
73 lines (61 loc) · 1.65 KB
/
run_tests.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Run Unit Tests
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
# trigger on pull requests
pull_request:
# trigger on all commits to trunk branches
push:
branches:
- "main"
- "next"
# trigger on request
workflow_dispatch:
defaults:
run:
shell: bash -leo pipefail {0}
jobs:
run_tests:
name: Unit test [py${{ matrix.python }} ${{ matrix.os }}]
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python: ['39', '310', '311', '312']
include:
# Test macOS and windows on oldest and latest versions.
- os: 'macos-14'
python: '312'
- os: 'windows-latest'
python: '312'
- os: 'windows-latest'
python: '39'
- os: 'macos-14'
python: '39'
steps:
- name: Checkout Code
uses: actions/[email protected]
with:
submodules: true
- name: Create Python Environment
uses: mamba-org/[email protected]
with:
micromamba-version: '1.5.8-0'
environment-name: test
environment-file: .github/workflows/env-files/py${{ matrix.python }}-conda-lock.yml
- name: Build and Install freud
run: |
uv pip install . --no-build-isolation --no-deps -v
- name: Run Tests
run: |
pytest tests/ -v
tests_complete:
name: All tests
if: always()
needs: [run_tests]
runs-on: ubuntu-latest
steps:
- run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'
- name: Done
run: echo "Done."