diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10b3d37b..bf089095 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,5 +21,4 @@ jobs: numactl-devel \ python3-pyelftools - run: make - - run: make lint - run: make coverage diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 00000000..25cd0c1c --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,18 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright (c) 2024 Robin Jarry +--- +name: Lint + +on: [pull_request] + +jobs: + build: + runs-on: ubuntu-latest + container: fedora:latest + steps: + - uses: actions/checkout@v4 + - run: | + dnf install -y \ + make gcc ninja-build meson clang-tools-extra git + - run: git log --oneline -20 --decorate + - run: make lint