Skip to content

Commit

Permalink
update test action
Browse files Browse the repository at this point in the history
- remove python 2.7
- add python 3.11, 3.12
- update action versions
  • Loading branch information
nhoffman committed Apr 28, 2024
1 parent a02843c commit d8bbecc
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: test
on: push
# on:
# push:
# branches:
# - master

on:
- push
- pull_request

jobs:
test:
runs-on: ${{ matrix.os }}
Expand All @@ -13,17 +13,18 @@ jobs:
# os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
python-version:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
Expand Down

0 comments on commit d8bbecc

Please sign in to comment.