Skip to content

Commit

Permalink
Merge branch 'main' into CADC-12678
Browse files Browse the repository at this point in the history
  • Loading branch information
SharonGoliath committed Sep 18, 2023
2 parents 7138878 + d6374b2 commit 50b679f
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions .github/workflows/cibuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Install hdf5 library
run: sudo apt-get install -y libhdf5-dev
uses: actions/checkout@v3

egginfo:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install tox
Expand All @@ -49,16 +47,15 @@ jobs:
package: caom2utils
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
# pytest-runner required to support deprecated Python3.5
run: python -m pip install --upgrade tox pytest-runner
run: python -m pip install --upgrade tox
- name: Test ${{ matrix.package }}
run: |
# add py and remove the "." from python-version in order to get the tox_target
Expand All @@ -70,9 +67,9 @@ jobs:
runs-on: ubuntu-latest
needs: tests
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Setup Graphviz
Expand All @@ -96,9 +93,9 @@ jobs:
runs-on: ubuntu-latest
if: contains(github.ref, '=')
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Determine the package
Expand Down

0 comments on commit 50b679f

Please sign in to comment.