Skip to content

Commit

Permalink
Fix poetry lock (#83)
Browse files Browse the repository at this point in the history
* Update poetry.lock file

Signed-off-by: Vicente Zepeda Mas <[email protected]>

* Adds github action to check lockfile

Signed-off-by: Vicente Zepeda Mas <[email protected]>

---------

Signed-off-by: Vicente Zepeda Mas <[email protected]>
  • Loading branch information
chentex authored Jan 26, 2024
1 parent ad5ab60 commit a337492
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 5 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/poetry-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Check poetry lockfile
on: [ pull_request ]

jobs:
build:
name: Check poetry lockfile
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- uses: Gr1N/setup-poetry@v8
- name: verify poetry instalation
run: poetry --version
working-directory: ./backend
- name: verify poetry lockfile
run: poetry check --lock
working-directory: ./backend
55 changes: 50 additions & 5 deletions backend/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a337492

Please sign in to comment.