Skip to content

Commit

Permalink
👷 Run flutter tests on dev branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chralu committed Jun 4, 2024
1 parent 661a95f commit 5a08d85
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/flutter-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Flutter Test

on:
push:
branches:
- '*'

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: "stable"
flutter-version: '3.19.3'

- name: Install dependencies
run: flutter pub get

- name: Run tests
run: flutter test

0 comments on commit 5a08d85

Please sign in to comment.