Bump actions/checkout from 6.0.1 to 6.0.2 in the github-actions group #2
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: tests | |
| on: | |
| push: | |
| branches: | |
| - not-a-branch | |
| pull_request: null | |
| env: | |
| PY_COLORS: "1" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| tests-load-graph: | |
| name: tests-load-graph | |
| runs-on: "ubuntu-latest" | |
| defaults: | |
| run: | |
| shell: bash -el {0} | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| path: cf-graph | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| repository: regro/cf-scripts | |
| path: cf-scripts | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| repository: conda-forge/conda-forge-pinning-feedstock | |
| path: conda-forge-pinning-feedstock | |
| - uses: mamba-org/setup-micromamba@add3a49764cedee8ee24e82dfde87f5bc2914462 # v2.0.7 | |
| with: | |
| environment-file: cf-scripts/conda-lock.yml | |
| environment-name: cf-scripts | |
| condarc-file: cf-scripts/autotick-bot/condarc | |
| - name: install bot code | |
| run: | | |
| git config --global user.name regro-cf-autotick-bot | |
| git config --global user.email 36490558+regro-cf-autotick-bot@users.noreply.github.com | |
| git config --global pull.rebase false | |
| pushd cf-scripts | |
| python -m pip install --no-deps --no-build-isolation -e . | |
| popd | |
| - name: load graph | |
| run: | | |
| pushd cf-graph | |
| pytest -vv test_load_graph.py | |
| popd | |
| tests-model: | |
| name: tests-model | |
| continue-on-error: true | |
| runs-on: "ubuntu-latest" | |
| defaults: | |
| run: | |
| shell: bash -el {0} | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| path: cf-graph | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| repository: regro/cf-scripts | |
| path: cf-scripts | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| repository: conda-forge/conda-forge-pinning-feedstock | |
| path: conda-forge-pinning-feedstock | |
| - uses: mamba-org/setup-micromamba@add3a49764cedee8ee24e82dfde87f5bc2914462 # v2.0.7 | |
| with: | |
| environment-file: cf-scripts/conda-lock.yml | |
| environment-name: cf-scripts | |
| condarc-file: cf-scripts/autotick-bot/condarc | |
| - name: install bot code | |
| run: | | |
| git config --global user.name regro-cf-autotick-bot | |
| git config --global user.email 36490558+regro-cf-autotick-bot@users.noreply.github.com | |
| git config --global pull.rebase false | |
| pushd cf-scripts | |
| python -m pip install --no-deps --no-build-isolation -e . | |
| popd | |
| - name: check graph model | |
| run: | | |
| pushd cf-graph | |
| pytest \ | |
| --durations 10 \ | |
| ../cf-scripts/tests/model | |
| popd |