pin flutter SDK version via git submodule #619
Workflow file for this run
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: CI | |
on: [push, pull_request] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository and submodules | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Add vendored flutter to PATH | |
run: | | |
echo vendor/flutter/bin >> "$GITHUB_PATH" | |
- name: Download Flutter SDK artifacts (flutter precache) | |
run: flutter precache --universal | |
- name: Download our dependencies (flutter pub get) | |
run: flutter pub get | |
- name: Run tools/check | |
run: TERM=dumb tools/check --all --verbose |