Skip to content

Bump dart-lang/setup-dart from 1.6.5 to 1.7.0 in the github-actions g… #67

Bump dart-lang/setup-dart from 1.6.5 to 1.7.0 in the github-actions g…

Bump dart-lang/setup-dart from 1.6.5 to 1.7.0 in the github-actions g… #67

Workflow file for this run

name: Flute
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
Main:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
sdk: [beta, dev]
steps:
- name: Job info
run: |
echo "Triggered ${{ github.event_name }}"
echo "Running on ${{ runner.os }}"
echo "Branch: ${{ github.ref }}; repo: ${{ github.repository }}."
- name: Fetch sources
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Install Dart SDK
uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
with:
sdk: ${{ matrix.sdk }}
- name: Pub get
run: |
(cd engine && dart pub get)
(cd framework && dart pub get)
(cd benchmarks && dart pub get)
(cd script && dart pub get)
- name: Analyze
run: |
dart analyze --fatal-infos --fatal-warnings
- run: echo "🍏 This job's status is ${{ job.status }}."