Incorrect Behavior of Bars under (:permute) -> remove the expand_extrema call #1965
This file contains 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: invalidations | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: '1' | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/julia-buildpkg@latest | |
- uses: julia-actions/julia-invalidations@v1 | |
id: invs_pr | |
- uses: actions/checkout@v4 | |
with: | |
ref: 'master' | |
- uses: julia-actions/julia-buildpkg@latest | |
- uses: julia-actions/julia-invalidations@v1 | |
id: invs_master | |
- name: Report invalidation counts | |
run: | | |
echo "Invalidations on master: ${{ steps.invs_master.outputs.total }} (${{ steps.invs_master.outputs.deps }} via deps)" | |
echo "This branch: ${{ steps.invs_pr.outputs.total }} (${{ steps.invs_pr.outputs.deps }} via deps)" | |
shell: bash | |
- name: PR doesn't increase number of invalidations | |
run: | | |
if (( ${{ steps.invs_pr.outputs.total }} > ${{ steps.invs_master.outputs.total }} )); then | |
exit 1 | |
fi | |
shell: bash |