fix: init_options
is no longer supported in the rust-analyzer lsp config
#114
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build_and_test: | |
name: Rust project | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy, rustfmt | |
- name: Build | |
run: cargo build --locked | |
- name: Test | |
run: cargo test --locked | |
- name: Clippy | |
run: cargo clippy | |
- name: Rustfmt | |
run: cargo fmt --check |