statusCode is not needed in Encounter Diagnosis QDM. remove it to av… #81
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: Continuous Integration | |
on: | |
pull_request: | |
branches: [master, cqm_reports_3_x] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: [3.2] | |
mongodb-version: [4.0.18, 4.4] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Ruby ${{ matrix.ruby-version }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
- name: Install dependencies | |
run: bundle install | |
- name: Start MongoDB | |
uses: supercharge/mongodb-github-action@1.3.0 | |
with: | |
mongodb-version: ${{ matrix.mongodb-version }} | |
- name: Run audit | |
run: bundle exec bundle-audit check --update | |
- name: Run tests | |
run: bundle exec rake test | |
- name: Run rubocop | |
run: rubocop | |
- name: Upload code coverage to codecov.io | |
uses: codecov/codecov-action@v3 | |
with: | |
directory: coverage | |
name: codecov-integration |