Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Merge pull request #161 from ESSS/pre-commit-ci-update-config #838

Merge pull request #161 from ESSS/pre-commit-ci-update-config

Merge pull request #161 from ESSS/pre-commit-ci-update-config #838

Workflow file for this run

name: "Hookman - CI"
on:
push:
branches: [master, rb-*]
pull_request:
branches: [master]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: seanmiddleditch/gha-setup-ninja@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox codecov pybind11[global]
- name: Run tests
run: |
tox -e py
codecov -t ${{secrets.CODECOV_TOKEN}} -X gcov -f coverage.xml