Skip to content

chore: Update envfile creation in GitHub workflows #13

chore: Update envfile creation in GitHub workflows

chore: Update envfile creation in GitHub workflows #13

Workflow file for this run

name: Run Tests
on: [push, workflow_dispatch]
jobs:
drive:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: beta
cache: true
# Not needed for tests but pubspec.yaml requires it
- name: Make envfile
run: echo "API_URL=${{ secrets.API_URL }}" > .env
- run: flutter test