Skip to content

Commit

Permalink
Allow testing 3.12 so we be ready
Browse files Browse the repository at this point in the history
  • Loading branch information
cooperlees committed Sep 18, 2023
1 parent a31c58d commit a208884
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,21 @@ on: [push, pull_request]

jobs:
build:
name: bandersnatch CI python ${{ matrix.python-version }} on ${{matrix.os}}
# We want to run on external PRs, but not on our own internal PRs (for the
# pull_request event) as they'll be run by the push to the branch. Without
# this if check, ci workflow checks are duplicated since internal PRs match
# both the push and pull_request events.
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository

name: speedetst CI python ${{ matrix.python-version }} on ${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.11", "3.12"]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v4

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

- name: Install latest pip, setuptools + black & coverage
run: |
Expand Down

0 comments on commit a208884

Please sign in to comment.