-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #78 from jjcomer/cache-invalid-envs
Don't query invalid environments
- Loading branch information
Showing
21 changed files
with
1,707 additions
and
847 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 |
---|---|---|
|
@@ -71,14 +71,18 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
- name: Install Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: ${{ matrix.toolchain }} | ||
target: ${{ matrix.target }} | ||
profile: minimal | ||
components: clippy | ||
- name: Rust Cache | ||
uses: Swatinem/[email protected] | ||
with: | ||
key: ${{ matrix.target }} | ||
- name: Install Cross | ||
uses: actions-rs/[email protected] | ||
with: | ||
|
@@ -89,20 +93,20 @@ jobs: | |
with: | ||
use-cross: true | ||
command: clippy | ||
args: +${{ matrix.toolchain }} --target ${{ matrix.target }} -- -D warnings | ||
args: --target ${{ matrix.target }} -- -D warnings | ||
- name: Build | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: build | ||
use-cross: true | ||
args: +${{ matrix.toolchain }} --target ${{ matrix.target }} | ||
args: --target ${{ matrix.target }} | ||
- name: Test | ||
uses: actions-rs/cargo@v1 | ||
if: matrix.testable | ||
with: | ||
command: test | ||
use-cross: true | ||
args: +${{ matrix.toolchain }} --target ${{ matrix.target }} | ||
args: --target ${{ matrix.target }} | ||
|
||
fmt: | ||
name: Format | ||
|
@@ -117,6 +121,8 @@ jobs: | |
default: true | ||
profile: minimal | ||
components: rustfmt | ||
- name: Rust Cache | ||
uses: Swatinem/[email protected] | ||
- name: Format | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
|
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 |
---|---|---|
|
@@ -65,13 +65,17 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
- name: Install Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
target: ${{ matrix.target }} | ||
profile: minimal | ||
- name: Rust Cache | ||
uses: Swatinem/[email protected] | ||
with: | ||
key: ${{ matrix.target }} | ||
- name: Archive Release | ||
uses: taiki-e/upload-rust-binary-action@v1 | ||
with: | ||
|
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,6 @@ | ||
{ | ||
"WhiteSource Advise.Diff.BaseBranch": "master", | ||
"cSpell.words": [ | ||
"actix" | ||
] | ||
} |
Oops, something went wrong.