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 6ea696a
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 18 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Python CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
python-version: ["3.9"]

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

- 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 6ea696a

Please sign in to comment.