We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a1171b commit 9ac2f7bCopy full SHA for 9ac2f7b
.github/workflows/test.yml
@@ -7,6 +7,7 @@ jobs:
7
strategy:
8
matrix:
9
python-version: [ '3.6', '3.7', '3.8', '3.9']
10
+ jsonref-version: ["==0.3", ">1"]
11
steps:
12
- uses: actions/checkout@v2
13
- name: Setup python
@@ -21,6 +22,7 @@ jobs:
21
22
restore-keys: |
23
${{ runner.os }}-pip-
24
- run: pip install --upgrade -r requirements_dev.txt
25
+ - run: pip install 'jsonref${{ matrix.jsonref-version }}'
26
- run: py.test --cov .
27
- env:
28
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments