2023-02-13 13:15:38 -05: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 11:39:54 -04:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-12 04:59:10 -05:00
|
|
|
- uses: actions/setup-python@v5
|
2023-02-13 13:15:38 -05:00
|
|
|
with:
|
|
|
|
python-version: '3.x'
|
|
|
|
- run: pip install tomli
|
|
|
|
- run: ./scripts-dev/check_locked_deps_have_sdists.py
|