Skip to content

Commit

Permalink
test with newer Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Aug 22, 2023
1 parent 4387d9e commit e57ba21
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,27 @@
name: Tests

on: [push]
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

concurrency:
group: build-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down

0 comments on commit e57ba21

Please sign in to comment.