Skip to content

Merge pull request #50 from ripe-tech/hg/issues_template #170

Merge pull request #50 from ripe-tech/hg/issues_template

Merge pull request #50 from ripe-tech/hg/issues_template #170

Workflow file for this run

name: Main Workflow
on: [push]
jobs:
build:
name: Build
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, "3.10", rc]
runs-on: ubuntu-latest
container: python:${{ matrix.python-version }}
steps:
- uses: actions/checkout@v1
- run: python --version
- run: pip install -r requirements.txt
- run: |
pip install pylint
curl https://raw.githubusercontent.com/ripe-tech/pylint-config/master/pylintrc --output pylintrc
PYTHONPATH=src pylint src/ripe
if: matrix.python-version != '2.7' && matrix.python-version != '3.5'
- run: |
pip install black
black . --check --config ./pyproject.toml
if: matrix.python-version != '2.7' && matrix.python-version != '3.5'
- run: python setup.py test