mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-18 18:27:38 +00:00
ci: use stable Rust for builds
We still use nightly Clippy to ensure that 1) it builds under nightly and 2) that we pick up any new lints.
This commit is contained in:
parent
9202aae8b1
commit
b011805fc7
1 changed files with 3 additions and 3 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -15,10 +15,10 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install Rust nightly
|
||||
- name: Install Rust (stable)
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: nightly
|
||||
toolchain: stable
|
||||
override: true
|
||||
profile: minimal
|
||||
- name: Build
|
||||
|
@ -31,7 +31,7 @@ jobs:
|
|||
RUST_BACKTRACE: 1
|
||||
|
||||
clippy:
|
||||
name: Clippy check
|
||||
name: Clippy check (nightly)
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
|
Loading…
Reference in a new issue