Skip to content

Creates a C SDK to interact with the server #13

Creates a C SDK to interact with the server

Creates a C SDK to interact with the server #13

Workflow file for this run

name: clang-tidy-review
on:
pull_request:
paths:
- '**.c'
- '**.h'
workflow_dispatch:
jobs:
clang-tidy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install libcurl
run: sudo apt-get update && sudo apt-get install -y curl libcurl4-openssl-dev
- name: CMake
env:
CC: clang
run: cmake -B ./build -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
- name: reviewdog with clang-tidy
uses: arkedge/[email protected]
with:
workdir: ./sdks/c/
- name: Build
run: cmake -S . --build ./build
with:

Check failure on line 29 in .github/workflows/clang-tidy.yaml

View workflow run for this annotation

GitHub Actions / clang-tidy-review

Invalid workflow file

The workflow is not valid. .github/workflows/clang-tidy.yaml (Line: 29, Col: 7): Unexpected value 'with'
workdir: ./sdks/c/