Skip to content

Update the publish process #17

Update the publish process

Update the publish process #17

Workflow file for this run

name: Dart CI
permissions:
pull-requests: write
contents: write
id-token: write
on:
push:
branches:
- 'master'
- 'test_consume_*'
pull_request:
branches:
- '**'
jobs:
static-analysis:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
sdk: [ 2.18.7, 2.19.6 ]
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ matrix.sdk }}
- id: install
name: Install dependencies
run: dart pub get
- name: Analyze project source
run: dart analyze
if: always() && steps.install.outcome == 'success'
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
if: always() && steps.install.outcome == 'success'
- name: Check dependencies
run: dart run dependency_validator
if: always() && steps.install.outcome == 'success'
- uses: anchore/sbom-action@v0
with:
path: ./
format: cyclonedx-json