Skip to content

Commit

Permalink
Merge pull request #22 from QuickPay/migrate_to_github_actions
Browse files Browse the repository at this point in the history
Migrate to GitHub actions
  • Loading branch information
FrankHald committed Sep 15, 2021
2 parents 7ed8725 + a94a2f6 commit 9469397
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 9 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test_and_lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Test and Lint on Push and PR

on: [push, pull_request]

jobs:
test:
runs-on: "ubuntu-20.04"
strategy:
matrix:
python:
- "2.7"
- "3.5"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "${{matrix.python}}"
- run: pip install -r requirements.txt
- run: nosetests
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

0 comments on commit 9469397

Please sign in to comment.