Skip to content

test: testing impl in ci #22

test: testing impl in ci

test: testing impl in ci #22

Workflow file for this run

name: Dart
# on:
# push:
# branches: [ "master" ]
# pull_request:
# branches: [ "master" ]
on: [push, pull_request]
jobs:
test:
name: Run tests on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Dart
uses: dart-lang/setup-dart@v1
with:
sdk: "stable"
- name: Install dependencies
run: dart pub get
- name: Run tests
run: dart test