Skip to content

Commit 2e48ac9

Browse files
committed
chore: update GitHub Actions workflow to remove Python 3.8 and add Google authentication step
1 parent c6b1888 commit 2e48ac9

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/build.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
if: "! contains(github.event.head_commit.message, 'wip')"
1010
strategy:
1111
matrix:
12-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
12+
python-version: [3.9, "3.10", "3.11", "3.12"]
1313

1414
steps:
1515
- uses: actions/checkout@v4
@@ -29,6 +29,9 @@ jobs:
2929
run: flake8 xqute
3030
- name: Show bash version
3131
run: /bin/bash --version
32+
- uses: 'google-github-actions/auth@v2'
33+
with:
34+
credentials_json: ${{ secrets.GCP_SA_KEY }}
3235
- name: Test with pytest
3336
run: poetry run pytest tests/ --junitxml=junit/test-results-${{ matrix.python-version }}.xml
3437
- name: Upload pytest test results

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -161,3 +161,4 @@ test.py
161161
t.ipynb
162162

163163
gac_key.json
164+
gha-creds-*.json

0 commit comments

Comments
 (0)