From 5a08d851b44267b3dd3ad6f0b99535168179244c Mon Sep 17 00:00:00 2001 From: Chralu Date: Tue, 4 Jun 2024 14:46:26 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Run=20flutter=20tests=20on=20dev?= =?UTF-8?q?=20branch.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/flutter-tests.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/flutter-tests.yml diff --git a/.github/workflows/flutter-tests.yml b/.github/workflows/flutter-tests.yml new file mode 100644 index 000000000..96e0ccc4f --- /dev/null +++ b/.github/workflows/flutter-tests.yml @@ -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