Skip to content

Commit 61bf51a

Browse files
committed
LIC: add licence secrets
1 parent 32dec88 commit 61bf51a

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

.github/workflows/ubuntu-latest.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ jobs:
4949
run: |
5050
mypy --config-file pyproject.toml
5151
- name: Test with pytest and display Coverage
52+
env:
53+
RATESLIB_LICENCE: ${{ secrets.RATESLIB_LICENCE }}
5254
run: |
5355
coverage run -m --source=rateslib pytest
5456
coverage report -m

.github/workflows/ubuntu-minimum.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,7 @@ jobs:
3232
pip install -r requirements-minimum.txt
3333
pip install . -v
3434
- name: Test with pytest
35+
env:
36+
RATESLIB_LICENCE: ${{ secrets.RATESLIB_LICENCE }}
3537
run: |
3638
pytest

.github/workflows/windows-latest.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,7 @@ jobs:
3333
python -m pip install --upgrade pip
3434
pip install .[dev] -v
3535
- name: Test with pytest
36+
env:
37+
RATESLIB_LICENCE: ${{ secrets.RATESLIB_LICENCE }}
3638
run: |
3739
pytest

.github/workflows/windows-minimum.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,7 @@ jobs:
3434
pip install -r requirements-minimum.txt
3535
pip install . -v
3636
- name: Test with pytest
37+
env:
38+
RATESLIB_LICENCE: ${{ secrets.RATESLIB_LICENCE }}
3739
run: |
3840
pytest

0 commit comments

Comments
 (0)