2023-02-13 19:15:38 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: ["develop", "release-*"]
|
|
|
|
paths:
|
|
|
|
- poetry.lock
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- poetry.lock
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check-sdists:
|
|
|
|
name: "Check locked dependencies have sdists"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-25 17:39:54 +02:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-12 10:59:10 +01:00
|
|
|
- uses: actions/setup-python@v5
|
2023-02-13 19:15:38 +01:00
|
|
|
with:
|
|
|
|
python-version: '3.x'
|
|
|
|
- run: pip install tomli
|
|
|
|
- run: ./scripts-dev/check_locked_deps_have_sdists.py
|