Skip to content

Commit 20f65d0

Browse files
authored
ci: migrate to circleci
* ci: add circle config * ci: remove travis config
1 parent 4f188b8 commit 20f65d0

2 files changed

Lines changed: 36 additions & 21 deletions

File tree

.circleci/config.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
version: 2.1
2+
orbs:
3+
python: circleci/python@2.1.1
4+
5+
jobs:
6+
test:
7+
parameters:
8+
version:
9+
default: "3.11"
10+
description: Python version to install
11+
type: string
12+
docker:
13+
- image: cimg/python:<<parameters.version>>
14+
resource_class: large
15+
steps:
16+
- checkout
17+
- run: python --version
18+
- run:
19+
name: Install
20+
command: pip install .[dev]
21+
- run:
22+
name: Tests
23+
command: tox
24+
25+
workflows:
26+
test:
27+
jobs:
28+
- test:
29+
matrix:
30+
parameters:
31+
version:
32+
- "3.7"
33+
- "3.8"
34+
- "3.9"
35+
- "3.10"
36+
- "3.11"

.travis.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)