Skip to content

Commit 4a2fb64

Browse files
Run golden tests in CI (Resolves #36)
1 parent cc1446e commit 4a2fb64

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/pr_validation.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@ on:
33
pull_request:
44

55
jobs:
6+
test_goldens:
7+
runs-on: ubuntu-latest
8+
steps:
9+
# Checkout the repository
10+
- uses: actions/checkout@v3
11+
12+
# Setup Flutter environment
13+
- uses: subosito/flutter-action@v2
14+
with:
15+
channel: "stable"
16+
17+
# Download all the packages that the app uses
18+
- run: flutter pub get
19+
20+
# Run all tests
21+
- run: flutter test test_goldens
22+
623
build_website:
724
runs-on: ubuntu-latest
825
defaults:

0 commit comments

Comments
 (0)