Skip to content

Commit

Permalink
update just commands
Browse files Browse the repository at this point in the history
  • Loading branch information
rpetit3 committed Oct 11, 2024
1 parent bca5150 commit 68d1fc6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install project
run: |
python -m pip install -U pip
just install
just install-ci
- name: Build a binary wheel and a source tarball
run: just build
- name: Publish to PyPI
Expand Down
4 changes: 4 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ lint:
install:
poetry install --no-interaction

# install latest version with poetry for CI
install-ci:
poetry install --no-interaction --without dev

# check formatting, linting, and tests
check: check-fmt lint

Expand Down

0 comments on commit 68d1fc6

Please sign in to comment.