Skip to content

remove tests for python 3.5, 3.6 #8

remove tests for python 3.5, 3.6

remove tests for python 3.5, 3.6 #8

Workflow file for this run

name: test
on:
- push
- pull_request
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
python-version:
# - "3.5"
# - "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python --version
- name: Run tests
run: ./test.py