Skip to content

Commit

Permalink
Update CI workflow to have modern versions of actions and Python vers…
Browse files Browse the repository at this point in the history
…ions
  • Loading branch information
jdavies-st committed Jan 25, 2024
1 parent b9dbcc2 commit 50a68c4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Python package
name: ci

on: [push, pull_request]

Expand All @@ -8,16 +8,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down

0 comments on commit 50a68c4

Please sign in to comment.