Skip to content

Commit

Permalink
Add github actions file
Browse files Browse the repository at this point in the history
  • Loading branch information
SatyaAchanta committed Apr 27, 2024
1 parent 850d914 commit 872f9e0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Run tests

on: [push]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Flutter
uses: subosito/flutter-action@v1
with:
flutter-version: '2.0.6'

- name: Install dependencies
run: flutter pub get

- name: Run tests
run: flutter test

0 comments on commit 872f9e0

Please sign in to comment.