Updated readme #3
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: Dart CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: dart:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup morphy | |
working-directory: ./morphy | |
run: | | |
dart pub get | |
dart pub run build_runner build --delete-conflicting-outputs | |
- name: Run tests morphy | |
working-directory: ./morphy | |
run: dart pub run test | |
- name: Setup example | |
working-directory: ./example | |
run: | | |
dart pub get | |
dart pub run build_runner build --delete-conflicting-outputs | |
- name: Run tests Example | |
working-directory: ./example | |
run: dart pub run test | |