pin flutter SDK version via git submodule #617
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: | |
- uses: actions/checkout@v3 | |
- name: ⚙️ Install direnv | |
run: | | |
sudo apt-get -y install direnv | |
eval "$(direnv hook bash)" | |
- 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 |