Skip to content

Commit

Permalink
Revert "CI: run on pull requests"
Browse files Browse the repository at this point in the history
This reverts commit 666a464.

It turned out to be a bit abusive, since Github doesn't deduplicate
such actions; every time I pushed to a PR-eligible branch, it would
build the whole project TWICE. That's just a waste of resources.

We need to get some kind of test suite which is run before the sdist
action is deemed a success, and run *that* on each commit; then we
could consider not running the full bdist suite on every commit, but
only on PRs?
  • Loading branch information
James-E-A committed Jan 31, 2024
1 parent 028da08 commit 9588b52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/python_build.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build

on: [pull_request, push]
on: [push]

jobs:
sdist:
Expand Down

0 comments on commit 9588b52

Please sign in to comment.