Skip to content

Commit fc0d2f5

Browse files
author
V
committed
Merge branch 'git_action_testground' of https://github.com/cal-itp/data-infra into git_action_testground
2 parents 8222e19 + 6dfa645 commit fc0d2f5

File tree

4 files changed

+20
-68
lines changed

4 files changed

+20
-68
lines changed

Diff for: .github/workflows/build-calitp-data-infra.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,14 @@ jobs:
2424
defaults:
2525
run:
2626
working-directory: packages/calitp-data-infra
27+
strategy:
28+
matrix:
29+
pyversion: ['3.11']
2730
steps:
2831
- uses: actions/checkout@v3
2932
- uses: actions/setup-python@v4
3033
with:
31-
python-version: '3.9'
34+
python-version: ${{ matrix.pyversion }}
3235
- uses: 'google-github-actions/auth@v2'
3336
with:
3437
credentials_json: '${{ secrets.GCP_SA_KEY }}'

Diff for: .github/workflows/lint.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v2
1414
- uses: actions/setup-python@v2
15+
with:
16+
python-version: '3.11'
1517
- uses: actions/cache@v3
1618
with:
1719
path: ~/.cache/pre-commit
@@ -22,7 +24,8 @@ jobs:
2224
- uses: crate-ci/[email protected] # Set back to `master` after #967 on the typos repo is fixed
2325
with:
2426
files: ./docs/**
25-
- uses: snok/install-poetry@v1
27+
- name: Install Poetry
28+
run: curl -sSL https://install.python-poetry.org | POETRY_VERSION=2.0.1 python -
2629
- name: mypy ci
2730
working-directory: ci
2831
run: |

0 commit comments

Comments
 (0)