Bump actions/checkout from 4.1.4 to 4.1.5 in the github-actions group… #248
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dart CI | |
on: | |
# Run on PRs and pushes to the default branch. | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
- cron: "0 0 * * 0" | |
permissions: read-all | |
env: | |
PUB_ENVIRONMENT: bot.github | |
jobs: | |
# Check code formatting and static analysis on a single OS (linux) | |
# against Dart dev. | |
analyze: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
sdk: [dev] | |
steps: | |
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b | |
- uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30 | |
with: | |
channel: ${{ matrix.sdk }} | |
- id: install | |
name: Install dependencies | |
run: dart pub get | |
- name: Check formatting | |
run: dart format --output=none --set-exit-if-changed . | |
if: always() && steps.install.outcome == 'success' | |
- name: Analyze code | |
run: dart analyze --fatal-infos | |
if: always() && steps.install.outcome == 'success' | |
# Run tests on a matrix consisting of two dimensions: | |
# 1. OS: ubuntu-latest, (macos-latest, windows-latest) | |
# 2. release channel: dev | |
test: | |
needs: analyze | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
# Add macos-latest and/or windows-latest if relevant for this package. | |
os: [ubuntu-latest] | |
sdk: [3.3, dev] | |
steps: | |
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b | |
- uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30 | |
with: | |
channel: ${{ matrix.sdk }} | |
- id: install | |
name: Install dependencies | |
run: dart pub get | |
- name: Run VM tests | |
run: dart test --platform vm | |
if: always() && steps.install.outcome == 'success' | |
- name: Run Chrome tests | |
run: dart test --platform chrome | |
if: always() && steps.install.outcome == 'success' | |
- name: Run Node tests | |
run: dart test --platform node | |
if: always() && steps.install.outcome == 'success' | |
- name: Run Chrome tests - wasm | |
run: dart test --platform chrome --compiler dart2wasm | |
if: always() && steps.install.outcome == 'success' && matrix.sdk == 'dev' |