Script Support Tests #77
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: Script Support Tests | |
on: | |
schedule: | |
# Runs every monday at 12 AM | |
- cron: '0 12 * * 1' | |
env: | |
flutter_version: ${{ vars.FLUTTER_VERSION }} | |
jobs: | |
test-script-support: | |
name: Test if scripts can still parse recipes | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ env.flutter_version }} | |
channel: 'stable' | |
cache: true | |
- name: Run setup script | |
run: bash setup.ps1 | |
- name: Run script support tests | |
run: flutter test --tags="parsing-test" --reporter=github --test-randomize-ordering-seed random |