Skip to content

Refactor pre-commit. #1511

Refactor pre-commit.

Refactor pre-commit. #1511

Workflow file for this run

name: Run Unit Tests
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
push:
branches:
- "main"
- "next"
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:
fail-fast: false
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/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
submodules: true
- name: Create Python Environment
uses: mamba-org/setup-micromamba@f8b8a1e23a26f60a44c853292711bacfd3eac822 # v1.9.0
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: |
# Enable tests only for nanobind-converted modules
pytest tests/test_box_Box.py -v
pytest tests/test_parallel.py -v
pytest tests/test_locality_*.py -v
pytest tests/test_data.py -v
pytest tests/test_pmft.py -v
pytest tests/test_util.py -v
# 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."