Skip to content

Commit

Permalink
[NoStory] Create sbom. (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
superandydong committed Apr 15, 2024
2 parents 5effad4 + ce23eb0 commit 2e56d9c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Continuous Integration
on:
pull_request:
push:
branches: [master]
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3

- name: Run Slither
uses: crytic/slither-action@v0.3.0
with:
fail-on: none

scan:
needs: lint-and-test
if: github.event_name == 'pull_request'
uses: circlefin/circle-public-github-workflows/.github/workflows/pr-scan.yaml@v1

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

0 comments on commit 2e56d9c

Please sign in to comment.