Find module path at runtime #86
Workflow file for this run
This file contains hidden or 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 use Nox to run tests and lint for the supported Python versions, and upload the test coverage data. | |
name: Build & Test | |
on: | |
push: | |
branches: | |
- main | |
- release/* | |
paths: | |
- "constraint/**" | |
- "tests/**" | |
- "cythonize_build.py" | |
- "noxfile.py" | |
- "pyproject.toml" | |
- ".github/workflows/build-test-python-package.yml" | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: fjwillemsen/[email protected] | |
- run: | | |
nox | |
- name: Report to Coveralls | |
uses: coverallsapp/github-action@v2 | |
with: | |
file: coverage.xml | |
format: cobertura |