criu/.github/workflows/lint.yml
Adrian Reber 0def9bc1ff tests: only run 'make lint' once in CI
Signed-off-by: Adrian Reber <areber@redhat.com>
2020-10-20 00:18:24 -07:00

13 lines
262 B
YAML

name: Run code linter
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install tools
run: sudo apt-get install -qqy flake8 shellcheck
- name: Run make lint
run: make lint