Add modification API #44
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
unit_tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
# Always keep support to at least 2 stable versions | |
version: [ "3.0", "latest" ] | |
container: | |
image: dart:${{ matrix.version }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install dependencies | |
run: dart pub get | |
- name: Run tests | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Dash" | |
dart test |