Skip to content

Commit

Permalink
Switch CI from Travis to Github
Browse files Browse the repository at this point in the history
  • Loading branch information
takluyver committed Jun 5, 2022
1 parent 09abe3f commit 3f6a520
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 10 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,25 @@
name: Test

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 2.7, 3.6, 3.7, 3.8, 3.9, 3.10]
steps:
- uses: actions/checkout@v2

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install . pytest
- name: Run tests
run: pytest
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

0 comments on commit 3f6a520

Please sign in to comment.