Skip to content

TST: Test new version of constructor #744

TST: Test new version of constructor

TST: Test new version of constructor #744

Workflow file for this run

name: autofix.ci
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.ref }}
cancel-in-progress: true
on: # yamllint disable-line rule:truthy
# We only do this on PRs to avoid the (admittedly unlikely) scenario that
# we run, green, wait, merge, then the build on `main` could fail because conda
# has updated during the "green" and then the "build on `main`" steps
pull_request:
branches: "*"
jobs:
deps:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install packaging requests pyyaml
- run: python tests/test_outdated.py # can update the file in place
- uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c
if: failure()