Skip to content

Commit

Permalink
Test github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
up2code committed Dec 9, 2023
1 parent 5dc8d8b commit 5c0caf0
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Github action marketplace: https://github.com/marketplace?type=actions

name: Test

on:
push:
branches: [ feature/migrate_and_refactor ]

jobs:
build_android:
runs-on: ubuntu-latest
steps:
- name: Print environment variables
run: env

- name: Print architecture
run: uname -m

- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.10.0'
channel: 'stable'

- run: flutter --version
shell: bash

- name: Install all dependencies
run: flutter pub get

- name: Run test
run: flutter test

0 comments on commit 5c0caf0

Please sign in to comment.