Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
pr-builder (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
mridhul authored and shrinandj committed Oct 29, 2019
1 parent 7301ac6 commit eba5b78
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/prbuilder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: PR Builder

on:
pull_request:
branches: master

jobs:
build:

runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [2.7]

steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Test with pytest
run: |
pip install pytest pipenv
pipenv install --system --deploy --dev
make test

0 comments on commit eba5b78

Please sign in to comment.