Skip to content

Bump the github-actions group with 2 updates #55

Bump the github-actions group with 2 updates

Bump the github-actions group with 2 updates #55

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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
- name: Install Dart SDK
uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
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 }}."