Improve typing in boxtree.tree #815
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| schedule: | |
| - cron: '17 3 * * 0' | |
| concurrency: | |
| group: ${{ github.head_ref || github.ref_name }} | |
| cancel-in-progress: true | |
| jobs: | |
| ruff: | |
| name: Ruff | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: "Main Script" | |
| run: | | |
| pipx install ruff | |
| ruff check | |
| basedpyright: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: "Main Script" | |
| run: | | |
| EXTRA_INSTALL="pytest git+https://github.com/inducer/loopy.git \ | |
| git+https://github.com/inducer/sumpy.git optype" | |
| curl -L -O https://tiker.net/ci-support-v0 | |
| . ./ci-support-v0 | |
| build_py_project_in_conda_env | |
| cipip install basedpyright | |
| basedpyright "$(get_proj_name)" test | |
| typos: | |
| name: Typos | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: crate-ci/typos@master | |
| docs: | |
| name: Documentation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: "Main Script" | |
| run: | | |
| curl -L -O https://tiker.net/ci-support-v0 | |
| . ci-support-v0 | |
| build_py_project_in_conda_env | |
| build_docs | |
| pytest3: | |
| name: Conda Python 3 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: "Main Script" | |
| run: | | |
| curl -L -O https://tiker.net/ci-support-v0 | |
| . ci-support-v0 | |
| build_py_project_in_conda_env | |
| test_py_project | |
| py3example: | |
| name: Python 3 Examples | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: "Main Script" | |
| run: | | |
| curl -L -O https://tiker.net/ci-support-v0 | |
| . ci-support-v0 | |
| build_py_project_in_conda_env | |
| run_examples | |
| downstream_tests: | |
| strategy: | |
| matrix: | |
| downstream_project: [sumpy, pytential] | |
| name: Tests for downstream project ${{ matrix.downstream_project }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: "Main Script" | |
| env: | |
| DOWNSTREAM_PROJECT: ${{ matrix.downstream_project }} | |
| run: | | |
| export PYTEST_ADDOPTS=${PYTEST_ADDOPTS:-"-m 'not slowtest'"} | |
| curl -L -O https://tiker.net/ci-support-v0 | |
| . ci-support-v0 | |
| if [[ "$GITHUB_HEAD_REF" == "towards-array-context" ]]; then | |
| if [[ "${DOWNSTREAM_PROJECT}" == "sumpy" ]]; then | |
| DOWNSTREAM_PROJECT=https://github.com/inducer/${DOWNSTREAM_PROJECT}.git@towards-array-context-merge | |
| else | |
| DOWNSTREAM_PROJECT=https://github.com/alexfikl/${DOWNSTREAM_PROJECT}.git@towards-array-context | |
| fi | |
| fi | |
| test_downstream "$DOWNSTREAM_PROJECT" | |
| # vim: sw=4 |