Skip to content

Commit

Permalink
Update GitHub actions to use pipenv
Browse files Browse the repository at this point in the history
Using pipenv for GitHub actions requires updating the syntax, but the purpose of the actions otherwise remains the same.
  • Loading branch information
TKIPisalegacycipher committed Aug 8, 2024
1 parent 5c9da08 commit 3c543d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pip install --python 3.10
pipenv install build
pipenv install wheel
- name: Build a binary wheel and a source tarball
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install pipenv
pipenv install --deploy
pipenv install --python ${{ matrix.python-version }}
pipenv install flake8 pytest
- name: Lint with flake8
run: |
Expand Down

0 comments on commit 3c543d7

Please sign in to comment.