Skip to content

CI: Switch to GitHub actions. #1

CI: Switch to GitHub actions.

CI: Switch to GitHub actions. #1

Workflow file for this run

name: test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: read
jobs:
python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "2.7"
- "3.6"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: ./scripts/ci-install.sh
- name: Run tests
run: python setup.py test