Skip to content

Commit

Permalink
Stop running CI on Dart 2.18.7
Browse files Browse the repository at this point in the history
  • Loading branch information
sydneyjodon-wk committed Oct 24, 2024
1 parent 84d8dce commit b6cb061
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/dart_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
sdk: [ 2.18.7, 2.19.6 ]
sdk: [ 2.19.6 ]
steps:
- uses: actions/checkout@v2
- uses: dart-lang/[email protected]
Expand All @@ -35,7 +35,7 @@ jobs:

- name: Validate formatting
run: dart run dart_dev format --check
if: always() && steps.install.outcome == 'success' && matrix.sdk == '2.18.7'
if: always() && steps.install.outcome == 'success'

- name: Analyze project source
run: dart analyze
Expand All @@ -45,14 +45,14 @@ jobs:
run: |
dart run build_runner build --delete-conflicting-outputs
git diff --exit-code
if: always() && steps.install.outcome == 'success' && matrix.sdk == '2.19.6'
if: always() && steps.install.outcome == 'success'

test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
sdk: [ 2.18.7, 2.19.6 ]
sdk: [ 2.19.6 ]
steps:
- uses: actions/checkout@v2
- uses: dart-lang/[email protected]
Expand All @@ -74,8 +74,6 @@ jobs:
- name: Create SBOM Release Asset
uses: anchore/sbom-action@v0
# This fails if it runs more than once within a given build
if: matrix.sdk != '2.18.7'
with:
path: ./
format: cyclonedx-json

0 comments on commit b6cb061

Please sign in to comment.