-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d87ede4
commit 13950f5
Showing
1 changed file
with
12 additions
and
13 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 |
---|---|---|
|
@@ -7,10 +7,10 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: actions-rs/[email protected] | ||
with: | ||
toolchain: stable | ||
override: true | ||
- name: Install Rust | ||
run: | | ||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable -y | ||
echo "$HOME/.cargo/bin" >> $GITHUB_PATH | ||
- name: Check Type | ||
run: cargo fmt -- --check | ||
- name: Run internal tests | ||
|
@@ -23,10 +23,10 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: actions-rs/[email protected] | ||
with: | ||
toolchain: stable | ||
override: true | ||
- name: Install Rust | ||
run: | | ||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable -y | ||
echo "$HOME/.cargo/bin" >> $GITHUB_PATH | ||
- name: Build docs | ||
run: cargo doc | ||
- name: Deploy | ||
|
@@ -94,11 +94,10 @@ jobs: | |
uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
- name: Setup Rust toolchain | ||
uses: actions-rs/[email protected] | ||
with: | ||
toolchain: stable | ||
override: true | ||
- name: Install Rust | ||
run: | | ||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable -y | ||
echo "$HOME/.cargo/bin" >> $GITHUB_PATH | ||
- name: Install cargo-bump | ||
run: cargo install cargo-bump --force | ||
- name: Modify version with tag | ||
|