Skip to content

Commit

Permalink
Merge branch 'main' into dev/surrogates
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianSosic committed Aug 29, 2024
2 parents ed32ab8 + e49dc3d commit 3768774
Show file tree
Hide file tree
Showing 12 changed files with 1,188 additions and 34 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,27 @@ jobs:
- name: check reminders and notify
uses: agrc/reminder-action@v1

lockfiles:
runs-on: ubuntu-latest
name: "Lockfiles"
env:
TARGET_DOCS_LOCKFILE_PATH: .lockfiles/py310-dev.lock
DOCS_LOCKFILE_PATH: /tmp/lockfile
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
id: setup-python
with:
python-version: '3.10'
- name: Verify lockfile integrity
run: |
git fetch origin main:main
if git diff --name-only origin/main -- pyproject.toml | grep -q pyproject.toml; then
echo "pyproject.toml has been modified compared to the main branch."
echo "Lockfile might need to be updated."
exit 1
fi
lint:
strategy:
matrix:
Expand Down
Loading

0 comments on commit 3768774

Please sign in to comment.