Skip to content

Update test.yml

Update test.yml #4

Workflow file for this run

name: Test
on:
push:
jobs:
test:
name: Run test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
# flutter-version: '3.3.10'
channel: 'stable'
- name: Run pub get
run: flutter pub get
- name: Run test
run: flutter test