Skip to content

chore: Updating Python Requirements (#398) #762

chore: Updating Python Requirements (#398)

chore: Updating Python Requirements (#398) #762

Workflow file for this run

name: Python CI
on:
push:
branches: [ master ]
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
steps:
- uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install pip
run: pip install -r requirements/pip.txt
- name: Install Dependencies
run: make dev-install
- name: Run Tests
run: make test