Skip to content

Commit

Permalink
attempt to use github actions for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jfischer committed Dec 20, 2020
1 parent 7f6f99e commit 7bdc886
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/run-tests-on-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run-tests-on-push

on: push

jobs:
run-tests:
name: Run tests on push
runs-on: ubuntu-latest
steps:
-uses: actions/checkout@v2
-name "Set up Python"
uses: actions/setup-python@v2
with:
python-version: '3.6'
-name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install mypy pyflakes jupyter joblib sklearn
-name: Install dws
run: |
pip install --editable `pwd`
-name: Run tests
run: |
cd tests; make install-rclone-deb test

0 comments on commit 7bdc886

Please sign in to comment.