Cython graph doc (#273) #2113
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: tests | |
on: | |
push: | |
pull_request: | |
workflow_call: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository and submodules | |
uses: actions/checkout@v4 | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
- name: Cache python environment | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.pythonLocation }} | |
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ hashFiles('pyproject.toml') }} | |
- name: Install system dependencies using apt | |
run: | | |
sudo apt-get update && sudo apt-get -y install libboost-all-dev build-essential | |
- name: Install Dependencies | |
run: pip install --upgrade pip wheel && pip install .[dev] | |
- name: Test with pytest | |
run: | | |
pytest -vvv --junitxml=test-junit-reports/result.xml test/ | |
- name: Publish Unit Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
check_name: Unit Test Results | |
files: test-junit-reports/*.xml | |
report_individual_runs: true | |
deduplicate_classes_by_file_name: false |