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

SBOM from GHA #124

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 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
35 changes: 0 additions & 35 deletions .github/workflows/checks.yaml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/tests.yaml → .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,37 @@ on:
- master
pull_request:

permissions:
pull-requests: write
contents: write
id-token: write

jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
with:
sdk: 2.19.6

- run: dart pub get

- name: Analyze
run: dart run dart_dev analyze

- name: Format
run: dart run dart_dev format --check

- name: Validate Dependencies
run: dart run dependency_validator

- name: Generate SBOM
uses: anchore/sbom-action@v0
with:
path: ./
format: cyclonedx-json

snapshots:
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 0 additions & 4 deletions Dockerfile

This file was deleted.

Loading