Skip to content

Commit

Permalink
bump ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ric-evans committed Oct 20, 2023
1 parent c838445 commit be3c246
Showing 1 changed file with 18 additions and 11 deletions.
29 changes: 18 additions & 11 deletions .github/workflows/wipac-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ env:

jobs:

py-versions:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.versions.outputs.matrix }}
steps:
- uses: actions/checkout@v3
- id: versions
uses: WIPACrepo/[email protected]

flake8:
runs-on: ubuntu-latest
steps:
Expand All @@ -21,11 +30,18 @@ jobs:
- uses: WIPACrepo/[email protected]

mypy:
needs: [py-versions]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
py3: ${{ fromJSON(needs.py-versions.outputs.matrix) }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: WIPACrepo/[email protected]
with:
python-version: ${{ matrix.py3 }}
- uses: WIPACrepo/[email protected]

py-setup:
runs-on: ubuntu-latest
Expand All @@ -43,21 +59,12 @@ jobs:
github.actor != 'dependabot[bot]' &&
github.ref_type == 'branch'
name: wipac-dev-py-setup-action (only for non-dependabot non-default branches)
uses: WIPACrepo/wipac-dev-py-setup-action@v1.14
uses: WIPACrepo/wipac-dev-py-setup-action@v2.7
with:
base-keywords: IceCube
git_committer_name: ${{ env.BOT_NAME }}
git_committer_email: ${{ env.BOT_EMAIL }}
py-versions:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.versions.outputs.matrix }}
steps:
- uses: actions/checkout@v3
- id: versions
uses: WIPACrepo/[email protected]

unit-tests:
needs: [py-versions]
runs-on: ubuntu-latest
Expand Down

0 comments on commit be3c246

Please sign in to comment.