chore(deps): update pre-commit hooks #1932
Workflow file for this run
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: Tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- master | |
- develop | |
env: | |
FORCE_COLOR: 3 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
clang-tidy: | |
name: Clang-Tidy | |
runs-on: ubuntu-latest | |
container: silkeh/clang:18-bookworm | |
steps: | |
- name: Install requirements | |
run: apt-get update && apt-get install -y python3-dev python3-pip git | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Install extra requirements | |
run: python3 -m pip install setuptools_scm --break-system-packages | |
- name: Configure | |
run: cmake -S. -Bbuild -DCMAKE_CXX_CLANG_TIDY="$(which clang-tidy);--warnings-as-errors=*" | |
- name: Build | |
run: cmake --build build -j 2 | |
pylint: | |
runs-on: ubuntu-latest | |
name: PyLint | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Run PyLint | |
run: | | |
echo "::add-matcher::$GITHUB_WORKSPACE/.github/matchers/pylint.json" | |
pipx run nox -s pylint | |
cmake: | |
name: CMake 🐍 ${{ matrix.python-version }} | |
runs-on: ubuntu-latest | |
env: | |
PIP_ONLY_BINARY: numpy | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.7", "3.9", "3.12", "pypy3.9"] | |
include: | |
- python-version: "3.8" | |
cmake-extras: "-DCMAKE_CXX_STANDARD=17" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-prereleases: true | |
- name: Install python tools | |
run: python -m pip install -r dev-requirements.txt pytest-github-actions-annotate-failures numpy>=2.0.0rc1 | |
- name: Configure | |
run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Debug -DBOOST_HISTOGRAM_ERRORS=ON ${{ matrix.cmake-extras }} | |
- name: Build | |
run: cmake --build build -j 2 | |
- name: Test | |
working-directory: ./build | |
run: python -m pytest -ra | |
build_wheels: | |
name: ${{ matrix.build }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
build: cp312-manylinux_x86_64 | |
- os: windows-2019 | |
build: cp38-win32 | |
- os: windows-2019 | |
build: cp37-win_amd64 | |
- os: macos-13 | |
build: cp39-macosx_x86_64 | |
- os: macos-14 | |
build: cp39-macosx_arm64 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- uses: pypa/[email protected] | |
env: | |
CIBW_BUILD: "${{ matrix.build }}" | |
CIBW_BUILD_VERBOSITY: 1 | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: wheelhouse/* | |
name: test-wheels-${{ strategy.job-index }} | |
# Pipx is either missing or broken on macos-14 runners ATM | |
- name: Install twine | |
run: pip install twine | |
- name: Check wheels | |
run: twine check wheelhouse/* | |
shell: bash | |
pass: | |
if: always() | |
needs: [clang-tidy, pylint, cmake, build_wheels] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} |