Skip to content

Commit

Permalink
ci: do not update lock while installing
Browse files Browse the repository at this point in the history
  • Loading branch information
Julen Dixneuf committed Oct 15, 2023
1 parent 162c298 commit 0d41543
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ jobs:

- name: Install the latest version of rye
uses: eifinger/setup-rye@v1
with:
enable-cache: true

- name: Install development dependencies
run: make install-dev
run: make install-ci

- name: Check for correct formatting, static typing, linting, etc...
run: |
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ install:
install-dev:
rye sync

install-ci:
rye sync --no-lock

dev:
rye run uvicorn ${PACKAGE_NAME}.main:app --reload

Expand Down

0 comments on commit 0d41543

Please sign in to comment.