Skip to content

Commit

Permalink
ci: switch to github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aitjcize committed Jun 28, 2024
1 parent 8dbc2f6 commit 141cfab
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 18 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Python CI

on: [push, pull_request]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
arch: [amd64]
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9"]

steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.arch }}

- name: Check out repository
uses: actions/checkout@v2

- name: Upgrade pip and setuptools
run: |
python -m pip install --upgrade pip setuptools
- name: Install dependencies
run: |
pip install .
- name: Run tests
run: |
python test/test.py
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

0 comments on commit 141cfab

Please sign in to comment.