Skip to content

Commit

Permalink
Update GitHub Actions workflow
Browse files Browse the repository at this point in the history
- Update to setup-python@v5
- Migrate test matrix to test Python 3.11 and 3.12; drop 3.8 and 3.9.
  • Loading branch information
jonathansick committed Jan 22, 2024
1 parent 57998f4 commit 3c9e3a6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ jobs:
strategy:
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"

steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}

Expand All @@ -51,9 +51,9 @@ jobs:
with:
username: sqrereadonly
password: ${{ secrets.DOCKERHUB_SQREREADONLY_TOKEN }}
if: matrix.python == '3.10'
if: matrix.python == '3.11'

- name: Check tex builds
run: |
docker run --rm -v `pwd`:/workspace -w /workspace lsstsqre/lsst-texmf:latest sh -c './testTexDocs.sh'
if: matrix.python == '3.10'
if: matrix.python == '3.11'

0 comments on commit 3c9e3a6

Please sign in to comment.