Skip to content

Commit

Permalink
add CI code scanning (#2)
Browse files Browse the repository at this point in the history
Code scanning and creating SBOM on push.
  • Loading branch information
alex-chiu-circle authored Apr 17, 2024
2 parents c9bf80e + a6f7474 commit 9d7d68a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Continuous Integration
on:
pull_request:
push:
branches: [master]
jobs:
scan:
if: github.event_name == 'pull_request'
uses: circlefin/circle-public-github-workflows/.github/workflows/pr-scan.yaml@v1

release-sbom:
if: github.event_name == 'push'
uses: circlefin/circle-public-github-workflows/.github/workflows/attach-release-assets.yaml@v1

0 comments on commit 9d7d68a

Please sign in to comment.