Skip to content

Commit

Permalink
try to add test runs
Browse files Browse the repository at this point in the history
  • Loading branch information
moovida committed Jan 7, 2024
1 parent 9f1b1a3 commit 8841e14
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run Tests

on:
push:
branches:
- master

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: Setup Dart
uses: dart-lang/setup-dart@v1
with:
sdk: '2.15.0'

- name: Get Dependencies
run: dart pub get

- name: Run Tests
run: dart test

0 comments on commit 8841e14

Please sign in to comment.