Skip to content

Commit

Permalink
Fix: Add pull_request trigger for CI (#178)
Browse files Browse the repository at this point in the history
* fix: add pull_request trigger for CI

* fix: add branch restriction for push trigger
  • Loading branch information
VGau authored Oct 14, 2024
1 parent cd443d9 commit 39b38f7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
name: main

on:
pull_request:
push:
branches:
- main

jobs:
store-image-name-and-tags:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/run-smc-tests.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
name: Smart contracts test

on:
pull_request:
paths:
- 'contracts/**'
- 'testdata/**'
- 'prover/**'
push:
branches:
- main
paths:
- 'contracts/**'
- 'testdata/**'
Expand Down

0 comments on commit 39b38f7

Please sign in to comment.