remove macOS13 from wheels. add macOS15 #58
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
| name: lint_and_coverage | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: ['*'] | |
| jobs: | |
| linting: | |
| name: Lint and Coverage | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v5.0.0 | |
| with: | |
| submodules: recursive | |
| - uses: actions/setup-python@v6.0.0 | |
| with: | |
| python-version: 3.11 | |
| - name: Install from source | |
| run: pip install .[test] | |
| - name: Run Linting | |
| uses: astral-sh/ruff-action@v3 | |
| - name: Coverage Requirement - Library | |
| run: | | |
| pytest tests/test_lib --cov=h3 --cov=tests/test_lib --cov-fail-under=100 | |
| - name: Coverage - Cython | |
| run: | | |
| pip install cython | |
| cythonize tests/test_cython/cython_example.pyx | |
| pytest tests/test_cython --cov=tests/test_cython |