Skip to content

Commit 2446fff

Browse files
committed
devel dependancies
1 parent 4594665 commit 2446fff

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/main.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,20 @@ jobs:
1919
python-version: ${{ matrix.python-version }}
2020
architecture: x64
2121

22-
- name: Pre-Commit
22+
- name: Setup Package and Install Devel Dependancies
2323
run: |
24-
python -m pip install pre-commit
25-
pre-commit run -a
24+
python -m pip install .
25+
python -m pip install -Ur dev-requirements.txt
26+
27+
- name: Pre-Commit
28+
run: pre-commit run -a
2629

2730
- name: Analysis (git diff)
2831
if: failure()
2932
run: git diff
3033

3134
- name: Unit Tests
32-
run: |
33-
python -m pip install pytest
34-
py.test tests -v
35+
run: py.test tests -v
3536

3637
- name: Build Package
3738
if: matrix.python-version == '3.7' && github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')

dev-requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pre-commit
2+
pytest
3+
ruamel.yaml

0 commit comments

Comments
 (0)