Bust _membership_stream_cache
cache when current state changes (#17…
#15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- run: pip install tomli | |
- run: ./scripts-dev/check_locked_deps_have_sdists.py |