Verify Pub Constraints #187
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: Verify Pub Constraints | |
on: | |
schedule: | |
- cron: "0 13 * * *" # Every day at 06:00 PST | |
jobs: | |
test: | |
name: Verify Pub Constraints | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # 3.6.0 | |
with: | |
submodules: true | |
- name: Setup Flutter | |
uses: subosito/flutter-action@48cafc24713cca54bbe03cdc3a423187d413aafa # 2.10.0 | |
with: | |
cache: true | |
channel: stable | |
- name: Setup aft | |
run: dart pub global activate -spath packages/aft | |
- name: Verify Pub Constraints | |
run: aft constraints pub-verify |