Skip to content

Disable pixi caching — no lock file with dynamically generated TOML #263

Disable pixi caching — no lock file with dynamically generated TOML

Disable pixi caching — no lock file with dynamically generated TOML #263

Workflow file for this run

name: Post-merge actions

Check failure on line 1 in .github/workflows/merge.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/merge.yml

Invalid workflow file

(Line: 31, Col: 14): Unexpected value ''
on:
pull_request_target:
types: [closed]
paths-ignore:
- .github/*
- .gitignore
- README.md
jobs:
update_coverage_badge:
# Only run on merged internal PRs
if: github.event.pull_request.merged == true && github.event.pull_request.head.repo.full_name == github.repository
runs-on: ubuntu-latest
timeout-minutes: 30
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
steps:
- name: Checkout main
uses: actions/checkout@v6
with:
ref: main
- name: Create TOML from recipe
run: .github/workflows/create_toml_from_yaml.sh ${GITHUB_WORKSPACE}
- name: Setup pixi
uses: prefix-dev/setup-pixi@v0.9.4
with:
# cache: true # disabled — pixi.toml is dynamically generated, no lock file to cache from
- name: Check unit test code coverage
run: pixi run codecov