From 8053187731ae8e3eb368d8360989cf5fd6eed9f7 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 05:32:49 +0200 Subject: Adding upstream version 0.17.0. Signed-off-by: Daniel Baumann --- .github/workflows/lint.yml | 61 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 .github/workflows/lint.yml (limited to '.github/workflows/lint.yml') diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..d6220ee --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,61 @@ +name: lint + +on: + push: + branches: + - main + pull_request: + paths-ignore: + - '/.*' + - '/_*' + - '!.clang-format' + - 'Brewfile' + - 'docs/**' + - '**.adoc' + - '**.md' + - '**.nix' + - 'flake.lock' + +jobs: + clang-format: + runs-on: ubuntu-latest + if: "!contains(github.event.head_commit.message, 'skip ci')" + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 1 + submodules: true + - uses: DoozyX/clang-format-lint-action@v0.15 + with: + clangFormatVersion: 11.0.0 + shellcheck: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 1 + submodules: true + - uses: ludeeus/action-shellcheck@master + with: + scandir: './ci' + env: + SHELLCHECK_OPTS: -x + version-cmake-up-to-date: + runs-on: ubuntu-latest + if: "!contains(github.event.head_commit.message, 'skip ci')" + timeout-minutes: 10 + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 1 + path: rnp + - name: Download latest version.cmake + uses: actions/checkout@v3 + with: + repository: rnpgp/cmake-versioning + fetch-depth: 1 + path: cmake-versioning + - name: Compare + run: | + set -x + diff "rnp/cmake/version.cmake" "cmake-versioning/version.cmake" -- cgit v1.2.3