DRIVERS-926 Make ReadConcernMajorityNotAvailableYet a retryable read error #2820
Workflow file for this run
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: Check unified test format files against schema | |
on: | |
push: | |
branches: [master] | |
pull_request: ~ | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Set up npm | |
uses: actions/setup-node@v2 | |
with: | |
node-version: lts/* | |
- name: Install dependencies | |
run: | | |
npm install -g ajv-cli js-yaml | |
- name: Check unified format test files against schema | |
working-directory: source/unified-test-format/tests | |
run: make | |
- name: Check all unified tests schema version is valid | |
run: bash .github/workflows/check_schema_version.sh |