Skip to content

fix: Send correct note index on sync response #141

fix: Send correct note index on sync response

fix: Send correct note index on sync response #141

Workflow file for this run

# Runs linting related jobs.
name: lint
on:
push:
branches: [main, next]
pull_request:
types: [opened, reopened, synchronize]
jobs:
version:
name: check rust version consistency
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
profile: minimal
override: true
- name: check rust versions
run: ./scripts/check-rust-version.sh
rustfmt:
name: rustfmt nightly on ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install minimal Rust with rustfmt
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: rustfmt
- name: Install cargo make
run: cargo install cargo-make
- name: cargo make - format-check
run: cargo make format-check
clippy:
name: clippy stable on ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install minimal Rust with clippy
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy
- name: Install cargo make
run: cargo install cargo-make
- name: cargo make - clippy
run: cargo make clippy