Skip to content

Commit 4a74fea

Browse files
committed
skip pipfile in ci
1 parent bbb7ac0 commit 4a74fea

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,13 @@ jobs:
2525
- name: Install pipenv
2626
run: |
2727
python -m pip install --upgrade pip
28-
pip install pipenv
29-
30-
- name: Install dependencies
31-
run: |
32-
pipenv install --dev --python ${{ matrix.python-version }}
28+
pip install .
29+
pip install -r requriements-dev.txt
3330
3431
- name: Lint with ruff
3532
run: |
36-
pipenv run lint
33+
ruff check .
3734
3835
- name: Run unit tests
3936
run: |
40-
pipenv run unittest
37+
python -m unittest

requirements-dev.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
build==1.2.1
2+
ruff==0.4.9
3+
sphinx==7.3.7

0 commit comments

Comments
 (0)