Skip to content

Use bundled language server in vscode client #49

Use bundled language server in vscode client

Use bundled language server in vscode client #49

Workflow file for this run

name: Server CI
on: [ push, pull_request ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt, clippy
- name: style
run: cargo +nightly fmt -- --check
- name: clippy
run: cargo clippy --all-targets --all-features -- -D warnings
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: test
run: cargo test --all-targets --all-features