Use serdeMembersExactly #294
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: Integration Testing | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
# allow this workflow to be triggered manually | |
jobs: | |
test_integration: | |
name: 'Run integration testing with upstream Ion data' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code and submodules | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Set up D compiler / tools | |
uses: dlang-community/[email protected] | |
with: | |
compiler: ldc-latest | |
- name: Run integration tester | |
id: test | |
run: | | |
cd ion-integration-tester | |
dub run -- --no-colors --fails-only |