Skip to content

Run Gnitpick using container action #14

Run Gnitpick using container action

Run Gnitpick using container action #14

Workflow file for this run

name: "Lint python code"
on: [push, pull_request]
env:
PYTHON_VERSION: 3.6
jobs:
lint:
runs-on: ubuntu-20.04
steps:
- name: Setup repository
uses: actions/checkout@v2
- name: Set up python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: pip3 install flake8
- name: Lint code
run: flake8