Skip to content

fix: github workflow #13

fix: github workflow

fix: github workflow #13

Workflow file for this run

name: analyzer

Check failure on line 1 in .github/workflows/analyzer.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/analyzer.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: create_env
on:
pull_request:
branches:
- main
- development
push:
branches:
- main
- development
jobs:
create_env:
name: 'Create env file'
run: |
echo "${{ secrets.ENV_FILE }}" > .env
flutter_analyze:
name: Run flutter analyze
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: "12.x"
- uses: subosito/flutter-action@v1
with:
channel: "stable"
flutter-version: '3.13.0'
- run: |
flutter doctor
flutter pub get
flutter pub run build_runner build
flutter analyze