Skip to content

Added roles

Added roles #121

Workflow file for this run

name: main
on:
pull_request:
branch:
- master
jobs:
build:
runs-on: ubuntu-20.04
strategy:
max-parallel: 4
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- 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
python -m pip install -r requirements.txt
python -m pip install -r requirements.ci.txt
- name: Install tox
run: python -m pip install tox
- name: Start prism
run: |
make prism-start
sleep 3
- name: Run tests
run: |
docker logs -f $(cat /tmp/prism.cid) &
python -m pytest
kill %1
make prism-stop