1
0
mirror of https://github.com/ubuntu/microk8s.git synced 2021-05-23 02:23:41 +03:00
Files
microk8s/.github/workflows/check-formatting.yml
Chris Sanders ea79c78f79 Lint (#1988)
* Fix linting and switch to tox

Switched linting to tox
Added codspell to tox
Fixed black and codespell identified mistakes
2021-02-09 08:18:34 +02:00

23 lines
331 B
YAML

name: Lint Code
on:
- push
- pull_request
jobs:
build:
name: Check Formatting
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get install tox
- name: Check formatting
run: |
tox -e lint