[pre-commit.ci] pre-commit autoupdate #1039
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: Python Testing | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup packages | |
uses: ./.github/actions/setup | |
- name: Install package | |
run: | | |
pip install --verbose -e .[test] | |
- name: Print GLIBC dependency | |
run: | | |
objdump -T libpyg.so | grep GLIBC_ | |
- name: Run tests | |
run: | | |
pytest --cov --cov-report=xml |