Skip to content

Commit

Permalink
Revert to using nightly for rust-analyzer compat check (#995)
Browse files Browse the repository at this point in the history
### What
Revert to using nightly for rust-analyzer compat check.

### Why
I changed the version of rust-analyzer to the stable version in
#994 however it seems to
be much much slower for some reason.
  • Loading branch information
leighmcculloch authored Jun 20, 2023
1 parent 72af4ee commit 4b7af8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: rustup update
- run: rustup component add rust-analyzer
- run: rustup +nightly component add rust-analyzer
- name: Check if rust-analyzer encounters any errors parsing project
run: rustup run stable rust-analyzer analysis-stats . 2>&1 | (! grep '^\[ERROR')
run: rustup run nightly rust-analyzer analysis-stats . 2>&1 | (! grep '^\[ERROR')

build-and-test:
strategy:
Expand Down

0 comments on commit 4b7af8f

Please sign in to comment.