Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ci branches trigger #282

Merged
merged 2 commits into from
Jul 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-anchor-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Anchor Test

on:
pull_request:
branches: [main]
branches: [main, develop]
push:
branches: [main]
branches: [main, develop]

permissions:
contents: read
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-cargo-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Cargo Audit

on:
pull_request:
branches: [main, v*.*]
branches: [main, develop]
push:
branches: [main, v*.*]
branches: [main, develop]

env:
CARGO_TERM_COLOR: always
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-cargo-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Lint and Test

on:
pull_request:
branches: [main, v*.*]
branches: [main, develop]
push:
branches: [main, v*.*]
branches: [main, develop]

env:
CARGO_TERM_COLOR: always
Expand Down
19 changes: 10 additions & 9 deletions .github/workflows/ci-soteria-audit.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: Soteria Audit
# Update to match your branch names and requirements
name:
Soteria Audit
# Update to match your branch names and requirements
on:
pull_request:
branches: [main]
branches: [main, develop]
push:
branches: [main]
branches: [main, develop]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand All @@ -17,10 +18,10 @@ jobs:
- name: Check-out the repository
uses: actions/checkout@v2
- name: Soteria Audit
continue-on-error: false # set to true if you don't want to fail jobs
continue-on-error: false # set to true if you don't want to fail jobs
uses: silas-x/soteria-action@main
with: # remove if not passing arguments below
with: # remove if not passing arguments below
# solana-version: "1.9.14" # not required
run-mode: "-analyzeAll" # not required
cargo-com: "." # not required
program-path: "." # not required
run-mode: '-analyzeAll' # not required
cargo-com: '.' # not required
program-path: '.' # not required
Loading