Skip to content

Workflow file for this run

name: Build Web
on:
push:
branches:
- lab7
pull_request:
branches:
- lab7
jobs:
test:

Check failure on line 12 in .github/workflows/test.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yaml

Invalid workflow file

You have an error in your yaml syntax on line 12
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.22.2
- run: flutter pub get
- run: flutter test test/widget_test.dart
- run: flutter analyze --no-fatal-warnings --no-fatal-infos lib/livecoding/cicd/
- run: flutter build web --release lib/livecoding/cicd/main.dart
- uses: bluefireteam/flutter-gh-pages@v7
with:
customArgs: "lib/livecoding/cicd/main.dart"
- name: Run widget tests
run: flutter test test/widget_test.dart