Skip to content

Commit

Permalink
Move tests to GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bookernath committed Jul 7, 2022
1 parent d891fa6 commit 72151f3
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 5 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: continuous-integration

on:
pull_request:
branches: [master, main]
push:
branches: [master, main]

jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
uses: py-actions/py-dependency-install@v3
- name: Run Tests
run: |
nosetests -a '!broken'
5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

0 comments on commit 72151f3

Please sign in to comment.