Skip to content

Update softprops/action-gh-release action to v2.3.3 #279

Update softprops/action-gh-release action to v2.3.3

Update softprops/action-gh-release action to v2.3.3 #279

Workflow file for this run

name: Unit test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
push:
branches:
- "trunk-*"
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
unit_test:
name: Unit test [py${{ matrix.python }} ${{ matrix.c_compiler }} ${{ matrix.os }}]
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
##############
# Windows
- os: windows-2022
python: '3.13'
##############
# Mac
# macos-x86_64
- os: macos-13
python: '3.12'
# macos-arm64
- os: macos-14
python: '3.13'
##############
# Ubuntu 24.04
- os: ubuntu-24.04
python: '3.10'
c_compiler: gcc-14
cxx_compiler: g++-14
- os: ubuntu-24.04
python: '3.11'
c_compiler: clang-16
cxx_compiler: clang++-16
- os: ubuntu-24.04
python: '3.12'
c_compiler: clang-17
cxx_compiler: clang++-17
- os: ubuntu-24.04
python: '3.12'
c_compiler: clang-18
cxx_compiler: clang++-18
- os: ubuntu-24.04
python: '3.13.0'
c_compiler: clang-18
cxx_compiler: clang++-18
##############
# Ubuntu 22.04
- os: ubuntu-22.04
python: '3.10'
c_compiler: gcc-12
cxx_compiler: g++-12
- os: ubuntu-22.04
python: '3.11'
c_compiler: clang-13
cxx_compiler: clang++-13
- os: ubuntu-22.04
python: '3.12'
c_compiler: clang-14
cxx_compiler: clang++-14
- os: ubuntu-22.04
python: '3.12'
c_compiler: clang-15
cxx_compiler: clang++-15
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
path: code
- name: Set up Python
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: ${{ matrix.python }}
- name: Set up Python environment
uses: glotzerlab/workflows/setup-uv@1855eec25e87bdbc06359aa3adc355b59272cae3 # 0.7.0
with:
lockfile: "code/.github/requirements-test.txt"
- name: Set Linux compiler
if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: |
echo "CC=${{ matrix.c_compiler }}" >> "$GITHUB_ENV"
echo "CXX=${{ matrix.cxx_compiler }}" >> "$GITHUB_ENV"
- name: Configure
run: cmake -S code -B build
- name: Build
run: cmake --build build -j 6 --config Release
- if: runner.os == 'Windows'
name: Copy pyd files
run: cp ./gsd/Release/*.pyd gsd/
working-directory: build
- name: Run tests
run: python3 -m pytest --pyargs gsd -p gsd.pytest_plugin_validate --validate -v --log-level=DEBUG
env:
PYTHONPATH: ${{ github.workspace }}/build
# This job is used to provide a single requirement for branch merge conditions.
tests_complete:
name: Unit test
if: always()
needs: [unit_test]
runs-on: ubuntu-latest
steps:
- run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'
- name: Done
run: exit 0