Skip to content

## 1.0.5 - bugs with copywith after change of custom constructor #8

## 1.0.5 - bugs with copywith after change of custom constructor

## 1.0.5 - bugs with copywith after change of custom constructor #8

Workflow file for this run

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