Skip to content

Commit

Permalink
ci: dont run tests on every push
Browse files Browse the repository at this point in the history
Rationale:
- PRs already run test by merging PR in develop branch (this is how
  github works)
- Running tests on practically identical code JUST after merge rarely
  helps. This has found failures from conflicting changes maybe once or
  twice a year. That much CO2 is not justified.
- It already runs once a day so you have good enough granuarilty to
  bisect if required.
  • Loading branch information
ankush committed Jul 19, 2023
1 parent ecda7d9 commit c17edd4
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
name: CI

on:
push:
branches: [develop, version-14-hotfix, version-14]
paths-ignore:
- "**.css"
- "**.js"
- "**.md"
- "**.html"
- "**.csv"

pull_request:
paths-ignore:
- "**.css"
Expand Down

0 comments on commit c17edd4

Please sign in to comment.