mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-23 10:09:57 +00:00
13 lines
262 B
YAML
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
|