Skip to content

Commit

Permalink
Add check-lockfile workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Jul 4, 2024
1 parent b587922 commit e6a11ac
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/check-lockfile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Check lockfile

on:
push:
paths-ignore:
- 'docs/**'
- '**/*.md'
pull_request:
paths-ignore:
- 'docs/**'
- '**/*.md'

jobs:
check-lockfile:
runs-on: ubuntu-latest

strategy:
fail-fast: false

steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'

- name: Install poetry
run: |
pipx install poetry
- name: Check lockfile
run: |
poetry check --lock

0 comments on commit e6a11ac

Please sign in to comment.