diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 00000000..335b4b1c --- /dev/null +++ b/.github/workflows/test.yaml @@ -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 \ No newline at end of file