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 ddc5fb6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 63 deletions.
63 changes: 0 additions & 63 deletions .circleci/config.yml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install tox
run: pip install tox
- name: Run tests on Python 3.9
run: tox
environment:
TOXENV: py39

0 comments on commit ddc5fb6

Please sign in to comment.