Skip to content

Commit

Permalink
run tests on pipeline
Browse files Browse the repository at this point in the history
Fixes #14
  • Loading branch information
javatarz committed Oct 13, 2019
1 parent 1e414cf commit 969f9f2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/gc-leaderboard.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: GitHub Contribution Leaderboard

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install
- name: Test with pytest
run: |
pytest

0 comments on commit 969f9f2

Please sign in to comment.