Skip to content

Commit

Permalink
Merge pull request #26 from lagerfeuer/github-actions
Browse files Browse the repository at this point in the history
Add Github Actions
  • Loading branch information
lagerfeuer committed Jan 25, 2020
2 parents d64da6b + 9d34277 commit 87efafa
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,22 @@
name: Test

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
python -m pytest --cov=cryptocompare

0 comments on commit 87efafa

Please sign in to comment.