Skip to content

Commit

Permalink
Run CI using dependencies from GH master branches
Browse files Browse the repository at this point in the history
This should allow us to spot upcoming issues before releases are made.
Done as part of a request from Michael Davidsaver.
  • Loading branch information
AlexanderWells-diamond committed Nov 6, 2024
1 parent 333fbfc commit 830c181
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,3 +167,32 @@ jobs:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.pypi_token }}
run: pipx run twine upload dist/*

# Check that the master branches of various upstream dependencies are
# still compatible when used together
master_branch_test:
if: ${{ github.event_name == 'schedule' }}
runs-on: "ubuntu-latest"
steps:
- name: Checkout Source
uses: actions/checkout@v4
with:
# require history to get back to last tag for version number of branches
fetch-depth: 0
submodules: true

- name: Install Python
uses: actions/setup-python@v4
with:
python-version: "3.12"

- name: Install master versions
run: |
pip install git+https://github.com/epics-base/p4p.git git+https://github.com/epics-base/pvxs.git git+https://github.com/epics-base/epicscorelibs.git
pip install git+https://github.com/DiamondLightSource/aioca git+https://github.com/DiamondLightSource/cothread
pip install -e .[dev]
pip freeze
- name: Run tests
run: |
python -m pytest

0 comments on commit 830c181

Please sign in to comment.