Skip to content

feat: Improve FileSystemEntity messaging #31

feat: Improve FileSystemEntity messaging

feat: Improve FileSystemEntity messaging #31

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