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

Abandoned/End-of-Life Announcement #28

Abandoned/End-of-Life Announcement

Abandoned/End-of-Life Announcement #28

Workflow file for this run

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