Skip to content

Commit 19ca8c2

Browse files
committed
Switch to Github CI
1 parent 634cde1 commit 19ca8c2

File tree

2 files changed

+22
-63
lines changed

2 files changed

+22
-63
lines changed

.circleci/config.yml

-63
This file was deleted.

.github/workflows/ci.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
on: [push]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
pyversion: ["3.9", "3.10", "3.11"]
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: Set up Python
12+
uses: actions/setup-python@v4
13+
with:
14+
python-version: "${{ matrix.version }}"
15+
- name: Display Python version
16+
run: python -c "import sys; print(sys.version)"
17+
- name: Install tox
18+
run: pip install tox
19+
- name: Run tests on Python ${{ matrix.version }}
20+
run: tox
21+
env:
22+
TOXENV: "py${{ matrix.version }}"

0 commit comments

Comments
 (0)