Skip to content

Add typing tools and use rattler-build for menus #1487

Add typing tools and use rattler-build for menus

Add typing tools and use rattler-build for menus #1487

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
timeout-minutes: 15
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 2
- name: Get commit message
run: echo "commit-message=$(git show -s --format=%s ${{ github.event.pull_request.head.sha }})" | tee -a ${GITHUB_OUTPUT}
id: get-commit-message
- uses: actions/setup-python@v6
with:
python-version: "3.14"
- run: pip install packaging requests pyyaml
- run: python -u tests/test_outdated.py # can update the file in place
if: ${{ !contains(steps.get-commit-message.outputs.commit-message, '[skip outdated]') }}
- uses: autofix-ci/action@c5b2d67aa2274e7b5a18224e8171550871fc7e4a
if: failure()