Skip to content

Commit

Permalink
Switch to Github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrgn committed Dec 2, 2023
1 parent 634cde1 commit 19ca8c2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 63 deletions.
63 changes: 0 additions & 63 deletions .circleci/config.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
pyversion: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "${{ matrix.version }}"
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install tox
run: pip install tox
- name: Run tests on Python ${{ matrix.version }}
run: tox
env:
TOXENV: "py${{ matrix.version }}"

0 comments on commit 19ca8c2

Please sign in to comment.