Skip to content

Commit fbe22a1

Browse files
committed
fix: github actions script to use correct config
1 parent ffb5162 commit fbe22a1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/unit-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
8+
python-version: ['3.8', '3.9', '3.10', '3.11']
99
steps:
1010
- uses: actions/checkout@v3
1111
- name: Set up Python ${{ matrix.python-version }}
@@ -17,6 +17,8 @@ jobs:
1717
python -m pip install --upgrade pip
1818
pip install pytest
1919
pip install -r requirements.txt
20+
- name: Ensure Config
21+
run: cp config.json.sample config.json
2022
- name: Lint code base
2123
run: |
2224
python -m pylama Access/accessrequest_helper.py scripts

0 commit comments

Comments
 (0)