Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Reber <areber@redhat.com>2020-09-17 20:18:41 +0300
committerAndrei Vagin <avagin@gmail.com>2020-10-20 10:18:24 +0300
commit0def9bc1ffba589f944f08a2e8296bc404bdf701 (patch)
treed602a44bc8eeb41e36f1b320eb7e5419712a71ef /.github
parent84215e0355ed84dff885f169c99d995363007b89 (diff)
tests: only run 'make lint' once in CI
Signed-off-by: Adrian Reber <areber@redhat.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
new file mode 100644
index 000000000..9b5e90368
--- /dev/null
+++ b/.github/workflows/lint.yml
@@ -0,0 +1,13 @@
+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