Skip to content

Commit ca52475

Browse files
committed
travis is dead, move ci to gh actions
1 parent 87a1d6d commit ca52475

File tree

4 files changed

+23
-8
lines changed

4 files changed

+23
-8
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
name: ${{ matrix.name }}
11+
steps:
12+
- name: Check out repository
13+
uses: actions/checkout@v3
14+
- uses: actions/setup-python@v4
15+
with:
16+
python-version-file: '.python-version'
17+
- name: Install tox
18+
run: |
19+
pip install tox
20+
- name: Run tox
21+
run: tox

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.10.4

.travis.yml

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

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36
2+
envlist = py310
33
skipsdist = True
44

55
[testenv]

0 commit comments

Comments
 (0)