-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into savestate
- Loading branch information
Showing
44 changed files
with
796 additions
and
328 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[alias] | ||
xtask = "run --package xtask --" |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,3 +88,24 @@ jobs: | |
env: | ||
version: ${{ env.version }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Setup Preview | ||
run: | | ||
echo "$(pwd)/build" >> $GITHUB_PATH | ||
- name: Generate preview | ||
uses: charmbracelet/[email protected] | ||
with: | ||
path: "docs/assets/preview.tape" | ||
|
||
- name: Move preview | ||
run: | | ||
mv preview.gif docs/assets/preview.gif | ||
- name: Upload preview | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: Preview for ${{ env.version }} | ||
file_pattern: "docs/assets/preview.gif" | ||
add_options: "--force" | ||
if: success() |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Check for typos | ||
|
||
on: | ||
[push, pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
check-typos: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: git fetch origin ${{ github.base_ref }} | ||
|
||
- name: Run spellcheck | ||
uses: crate-ci/[email protected] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: XTasks | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "xtask" | ||
- "Cargo.toml" | ||
- "Cargo.lock" | ||
- ".cargo" | ||
- "core/tabs" | ||
- "docs" | ||
push: | ||
paths: | ||
- "xtask" | ||
- "Cargo.toml" | ||
- "Cargo.lock" | ||
- ".cargo" | ||
- "core/tabs" | ||
- "docs" | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
docgen: | ||
name: DocGen | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Rust | ||
uses: dtolnay/rust-toolchain@stable | ||
|
||
- name: Cache Cargo registry | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cargo/registry | ||
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} | ||
restore-keys: ${{ runner.os }}-cargo-registry- | ||
|
||
- name: Cache Cargo index | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cargo/git | ||
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} | ||
restore-keys: ${{ runner.os }}-cargo-index- | ||
|
||
- name: Run cargo xtask docgen | ||
run: cargo xtask docgen | ||
|
||
- name: Check uncommitted documentation changes | ||
run: | | ||
git diff | ||
git diff-files --quiet \ | ||
|| (echo "Run 'cargo xtask docgen' and push the changes" \ | ||
&& exit 1) |
Oops, something went wrong.