Skip to content

Commit 38e2813

Browse files
committed
Moves to Github Actions
1 parent eb53f12 commit 38e2813

File tree

2 files changed

+30
-30
lines changed

2 files changed

+30
-30
lines changed

.github/workflows/run-tests.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Link repository with GitHub Actions
2+
# https://docs.github.com/en/actions/learn-github-actions/introduction-to-github-actions
3+
4+
# Master branch only
5+
name: run-tests
6+
on:
7+
push:
8+
branches:
9+
- master
10+
11+
# Set the language, install dependencies, and run the tests
12+
jobs:
13+
build:
14+
runs-on: [windows-latest, ubuntu-latest, macos-latest]
15+
strategy:
16+
matrix:
17+
python-version: [3.6, 3.7, 3.8]
18+
steps:
19+
- uses: actions/checkout@v2
20+
- name: Set up Python ${{ matrix.python-version }}
21+
uses: actions/setup-python@v2
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip
27+
pip install -r requirements.txt
28+
- name: Run nosetests
29+
run: |
30+
nosetests

.travis.yml

-30
This file was deleted.

0 commit comments

Comments
 (0)