Skip to content

Commit

Permalink
Merge branch 'helix-editor:master' into pull-diagnostics
Browse files Browse the repository at this point in the history
  • Loading branch information
SofusA authored Dec 14, 2024
2 parents ab117aa + e14c346 commit 1c36972
Show file tree
Hide file tree
Showing 77 changed files with 1,581 additions and 554 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
schedule:
- cron: "00 01 * * *"

env:
MSRV: "1.76"

jobs:
check:
name: Check (msrv)
Expand All @@ -18,7 +21,9 @@ jobs:
uses: actions/checkout@v4

- name: Install MSRV toolchain
uses: dtolnay/[email protected]
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.MSRV }}

- uses: Swatinem/rust-cache@v2
with:
Expand All @@ -39,7 +44,9 @@ jobs:
uses: actions/checkout@v4

- name: Install MSRV toolchain
uses: dtolnay/[email protected]
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.MSRV }}

- uses: Swatinem/rust-cache@v2
with:
Expand Down Expand Up @@ -71,8 +78,9 @@ jobs:
uses: actions/checkout@v4

- name: Install MSRV toolchain
uses: dtolnay/rust-toolchain@1.76
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.MSRV }}
components: rustfmt, clippy

- uses: Swatinem/rust-cache@v2
Expand All @@ -99,7 +107,9 @@ jobs:
uses: actions/checkout@v4

- name: Install MSRV toolchain
uses: dtolnay/[email protected]
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.MSRV }}

- uses: Swatinem/rust-cache@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: 'latest'
# mdbook-version: '0.4.8'
# mdbook-version: 'latest'
mdbook-version: '0.4.43'

- run: mdbook build book

Expand Down
Loading

0 comments on commit 1c36972

Please sign in to comment.