Skip to content

Commit

Permalink
fix(actions): only act on push
Browse files Browse the repository at this point in the history
  • Loading branch information
atticusofsparta committed Aug 5, 2024
1 parent c57dda8 commit 1983343
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_test_evolve.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build and Test

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

jobs:
# TODO: add unit tests using bused
Expand All @@ -19,7 +19,7 @@ jobs:
evolve:
# Run on main branch only
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
if: github.ref == 'refs/heads/main'
needs: integration
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 1983343

Please sign in to comment.