Skip to content

Commit

Permalink
ci: migrate to circleci
Browse files Browse the repository at this point in the history
* ci: add circle config
* ci: remove travis config
  • Loading branch information
atlawrie committed Dec 8, 2022
1 parent 4f188b8 commit 20f65d0
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 21 deletions.
36 changes: 36 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
version: 2.1
orbs:
python: circleci/python@2.1.1

jobs:
test:
parameters:
version:
default: "3.11"
description: Python version to install
type: string
docker:
- image: cimg/python:<<parameters.version>>
resource_class: large
steps:
- checkout
- run: python --version
- run:
name: Install
command: pip install .[dev]
- run:
name: Tests
command: tox

workflows:
test:
jobs:
- test:
matrix:
parameters:
version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

0 comments on commit 20f65d0

Please sign in to comment.