Skip to content

Commit

Permalink
Merge pull request #123 from stan-at-work/update-tests-github-actions
Browse files Browse the repository at this point in the history
update-tests-github-actions
  • Loading branch information
doonfrs authored Jan 2, 2025
2 parents c72a18a + b541246 commit 2ac73f1
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,26 @@
name: Tests
name: Flutter Test
on:
pull_request:
branches:
- master
branches: [master]

workflow_dispatch:

jobs:
tests:
build:
runs-on: ubuntu-latest

steps:
- name: Install Flutter Dependencies
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '11'
- uses: subosito/[email protected]
with:
channel: stable # or: beta, master (or main)

- name: Get all Flutter Packages
run: flutter pub get
- name: Run Flutter Tests

- name: Run Flutter Test
run: flutter test

0 comments on commit 2ac73f1

Please sign in to comment.