Skip to content

Commit

Permalink
Updated workflows so that they now run tests as a result of this PR.
Browse files Browse the repository at this point in the history
  • Loading branch information
diegotori committed Aug 5, 2024
1 parent 957c067 commit ac05d15
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Flutter Action
uses: subosito/flutter-action@v2
- name: Check format
Expand All @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Flutter Action
uses: subosito/flutter-action@v2
- name: Install Package Dependencies
Expand All @@ -41,15 +41,16 @@ jobs:
- name: Lint using flutter analyze
run: flutter analyze .

# test:
# name: Test2
# runs-on: ubuntu-latest
test:
name: Run tests.
runs-on: ubuntu-latest

# steps:
# - name: Checkout code
# uses: actions/checkout@v2
# - uses: subosito/flutter-action@v1
# with:
# channel: beta
# - name: Test
# run: flutter test
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Flutter Action
uses: subosito/flutter-action@v2
- name: Run flutter test
run: |
flutter pub get
flutter test

0 comments on commit ac05d15

Please sign in to comment.