Fix localized generators generating in english instead of localized #154
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: Test | |
on: | |
push: | |
branches: [ master, test/**, fix/** ] | |
pull_request: | |
branches: [ master, test/**, fix/** ] | |
jobs: | |
test: | |
name: "${{ matrix.os }}" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
sdk: [ stable ] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dart-lang/setup-dart@v1 | |
with: | |
sdk: ${{ matrix.sdk }} | |
- name: Install dependencies | |
run: dart pub get | |
- name: Verify formatting | |
run: dart format --output=none --set-exit-if-changed lib/ test/ | |
- name: Analyze project source | |
run: dart analyze | |
- name: Generate base library code | |
run: dart scripts/regenerate_base_classes.dart | |
- name: Generate localized FakeCollection | |
run: dart scripts/generate_all.dart | |
- name: Generate tests | |
run: dart scripts/create_tests.dart | |
- name: Run tests | |
run: dart test --chain-stack-traces |