Skip to content

Commit

Permalink
github: add workflow to check for pip changes
Browse files Browse the repository at this point in the history
  • Loading branch information
grische committed Dec 2, 2024
1 parent 715f150 commit 2280d94
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/bazel-pip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: Bazel & PIP

on:
push:
paths:
- 'requirements_*'
pull_request:
paths:
- 'requirements_*'

jobs:
bazel-pip:
name: Check if pip dependencies are up to date
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update requirements_lock.txt
run: |
bazel run //:requirements.update
- name: Check for difference
run: |
git diff --exit-code

0 comments on commit 2280d94

Please sign in to comment.