Skip to content
This repository was archived by the owner on Oct 20, 2024. It is now read-only.

Commit c944050

Browse files
authored
Merge pull request #298 from huff-language/stage
main <- staging
2 parents 813b6b6 + 50ee602 commit c944050

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+743
-372
lines changed

Diff for: .github/workflows/ci.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ jobs:
3131
- name: Install toolchain
3232
uses: actions-rs/toolchain@v1
3333
with:
34-
toolchain: nightly
34+
toolchain: stable
3535
profile: minimal
3636
components: rustfmt, clippy
3737
override: true
3838
- uses: Swatinem/rust-cache@v1
3939
with:
4040
cache-on-failure: true
4141
- name: cargo doc
42-
run: cargo +nightly doc --all-features --no-deps
42+
run: cargo doc --all-features --no-deps
4343

4444
cargo-clippy:
4545
runs-on: ubuntu-latest
@@ -49,15 +49,15 @@ jobs:
4949
- name: Install toolchain
5050
uses: actions-rs/toolchain@v1
5151
with:
52-
toolchain: nightly
52+
toolchain: stable
5353
profile: minimal
5454
components: rustfmt, clippy
5555
override: true
5656
- uses: Swatinem/rust-cache@v1
5757
with:
5858
cache-on-failure: false
5959
- name: cargo clippy
60-
run: cargo +nightly clippy --all --all-features -- -D warnings
60+
run: cargo clippy --all --all-features -- -D warnings
6161

6262
tests:
6363
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)