Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/pull-request-flutter-setup.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: pull-request-flutter-setup-test

on:
pull_request:
branches:
- master

env:
FLUTTER_VERSION: '3.7.6'

jobs:
# Gets all pubspec location paths and puts them into the matrix output
# to be used by the next step in parallel
setup:
runs-on: ubuntu-latest
outputs:
dir: ${{ steps.find-dirs.outputs.dir }}
steps:
- name: Checkout
uses: actions/checkout@v2
# TODO: cache pub dependencies (?)
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
cache: true
8 changes: 4 additions & 4 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: pull-request

on:
pull_request:
branches:
- master
# on:
# pull_request:
# branches:
# - master

env:
FLUTTER_PATH: '/opt/hostedtoolcache/flutter'
Expand Down