Skip to content

Commit

Permalink
Add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
andyhorn committed Feb 22, 2024
1 parent c1f84ac commit e31852d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
on:
pull_request:
types: [opened, synchronize]
branches:
- main

jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: "3.19.0"
- name: Get packages
run: flutter pub get
- name: Analyze
run: flutter analyze
- name: Test
run: flutter test

0 comments on commit e31852d

Please sign in to comment.