Skip to content

Added missing sudo command - thanks to Randy #179

Added missing sudo command - thanks to Randy

Added missing sudo command - thanks to Randy #179

Workflow file for this run

name: CI
on: [push]
jobs:
pylama:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install tox
run: pip install tox
- name: Run linting with tox
run: tox -e lint
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install tox
run: pip install tox
- name: Run type checks with tox
run: tox -e static
unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install tox
run: pip install tox
- name: Run unit tests with tox
run: tox -e unit