Skip to content

Commit d530220

Browse files
committed
ci: switch to github workflow
1 parent 8dbc2f6 commit d530220

File tree

2 files changed

+32
-18
lines changed

2 files changed

+32
-18
lines changed

.github/workflows/test.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Python CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-24.04
8+
strategy:
9+
matrix:
10+
python-version: ["3.12"]
11+
12+
steps:
13+
- name: Set up Python ${{ matrix.python-version }}
14+
uses: actions/setup-python@v2
15+
with:
16+
python-version: ${{ matrix.python-version }}
17+
architecture: x64
18+
19+
- name: Check out repository
20+
uses: actions/checkout@v2
21+
22+
- name: Upgrade pip and setuptools
23+
run: |
24+
python -m pip install --upgrade pip setuptools
25+
26+
- name: Install dependencies
27+
run: |
28+
pip install .
29+
30+
- name: Run tests
31+
run: |
32+
python test/test.py

.travis.yml

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

0 commit comments

Comments
 (0)