Skip to content

Add MkDocs for Vq and PyVq #13

Add MkDocs for Vq and PyVq

Add MkDocs for Vq and PyVq #13

Workflow file for this run

name: Run Linters
on:
workflow_dispatch:
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- '.github/**'
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y clang curl pkg-config libssl-dev make
make install-deps
- name: Run Linters
run: make lint