Skip to content

Commit

Permalink
Merge pull request #168 from Workiva/batch/raise_min_dart_sdk_2_19/ov…
Browse files Browse the repository at this point in the history
…er_react_test

raise_min_dart_sdk_2_19
  • Loading branch information
rmconsole4-wk authored Dec 9, 2024
2 parents d769acf + d5c19c4 commit 8d41b27
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 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 @@ -34,7 +34,7 @@ jobs:
if: always() && steps.install.outcome == 'success'

- name: Analyze project source
run: if [ ${{ matrix.sdk }} = '2.7.2' ]; then dart pub global activate tuneup && tuneup check --ignore-infos; else dart analyze; fi
run: dart analyze
if: always() && steps.install.outcome == 'success'

- uses: anchore/sbom-action@v0
Expand All @@ -51,7 +51,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 @@ -70,7 +70,7 @@ jobs:
if: always() && steps.install.outcome == 'success'

- name: Upload Unit Test Results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: ${{ steps.install.outcome == 'success' && (success() || failure()) }} # run this step even if previous step failed, but not if it was skipped
with:
name: ddc-test-results@${{ matrix.sdk }}
Expand All @@ -85,7 +85,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 @@ -104,7 +104,7 @@ jobs:
if: always() && steps.install.outcome == 'success'

- name: Upload Unit Test Results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: ${{ steps.install.outcome == 'success' && (success() || failure()) }} # run this step even if previous step failed, but not if it was skipped
with:
name: dart2js-test-results@${{ matrix.sdk }}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 3.0.0
description: A library for testing OverReact components
homepage: https://github.com/Workiva/over_react_test/
environment:
sdk: '>=2.13.0 <3.0.0'
sdk: '>=2.19.0 <3.0.0'

dependencies:
collection: ^1.15.0
Expand Down

0 comments on commit 8d41b27

Please sign in to comment.