Skip to content

Commit

Permalink
Stop pretending to run RegressionTests on main (#151)
Browse files Browse the repository at this point in the history
RegressionTests is comparing main's HEAD to itself on pushes. Previously I let this slide because I appreciated stress testing RegressionTests for false positives. RegressionTests has not reported a false positive comparing a commit to itself in ages so it's time to stop wasting CI on this.

In the future, perhaps we can add these back and make them compare to the previous commit.
  • Loading branch information
LilithHafner authored Nov 30, 2024
1 parent 6daa359 commit 0d2b13c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ jobs:
files: lcov.info
regression-tests:
needs: quick-test
name: RegressionTests.jl Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.julia-arch }} - ${{ github.event_name }}
if: github.event_name == 'pull_request'
name: RegressionTests.jl Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.julia-arch }}
runs-on: ${{ matrix.os }}
env:
RegressionTests: true
Expand Down

0 comments on commit 0d2b13c

Please # to comment.