forked from actix/actix-web
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
4 changed files
with
17 additions
and
48 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
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 |
---|---|---|
|
@@ -29,9 +29,7 @@ jobs: | |
name: ${{ matrix.target.name }} / ${{ matrix.version }} | ||
runs-on: ${{ matrix.target.os }} | ||
|
||
env: | ||
CI: 1 | ||
CARGO_INCREMENTAL: 0 | ||
env: {} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
@@ -43,12 +41,10 @@ jobs: | |
if: matrix.target.os == 'windows-latest' | ||
run: echo 'OPENSSL_DIR=C:\Program Files\OpenSSL-Win64' | Out-File -FilePath $env:GITHUB_ENV -Append | ||
|
||
- name: Install ${{ matrix.version }} | ||
uses: actions-rs/toolchain@v1 | ||
- name: Install Rust (${{ matrix.version }}) | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
toolchain: ${{ matrix.version }}-${{ matrix.target.triple }} | ||
profile: minimal | ||
override: true | ||
toolchain: ${{ matrix.version }} | ||
|
||
- name: Install cargo-hack | ||
uses: taiki-e/install-action@cargo-hack | ||
|
@@ -60,12 +56,6 @@ jobs: | |
cargo add [email protected] --dev -p=actix-web | ||
cargo add [email protected] --dev -p=awc | ||
- name: Generate Cargo.lock | ||
uses: actions-rs/cargo@v1 | ||
with: { command: generate-lockfile } | ||
- name: Cache Dependencies | ||
uses: Swatinem/[email protected] | ||
|
||
- name: workaround MSRV issues | ||
if: matrix.version != 'stable' | ||
run: | | ||
|
@@ -104,12 +94,9 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: dtolnay/rust-toolchain@stable | ||
|
||
- name: Generate Cargo.lock | ||
run: cargo generate-lockfile | ||
- name: Cache Dependencies | ||
uses: Swatinem/[email protected] | ||
- name: Install Rust | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: { toolchain: nightly } | ||
|
||
- name: tests (io-uring) | ||
timeout-minutes: 60 | ||
|
@@ -123,12 +110,9 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: dtolnay/rust-toolchain@nightly | ||
|
||
- name: Generate Cargo.lock | ||
run: cargo generate-lockfile | ||
- name: Cache Dependencies | ||
uses: Swatinem/[email protected] | ||
- name: Install Rust (nightly) | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: { toolchain: nightly } | ||
|
||
- name: doc tests | ||
run: cargo ci-doctest | ||
|
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 |
---|---|---|
|
@@ -35,16 +35,11 @@ jobs: | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: { components: clippy } | ||
|
||
- name: Generate Cargo.lock | ||
run: cargo generate-lockfile | ||
- name: Cache Dependencies | ||
uses: Swatinem/[email protected] | ||
|
||
- name: Check with Clippy | ||
uses: actions-rs/clippy-check@v1 | ||
- uses: giraffate/clippy-action@v1 | ||
with: | ||
args: --workspace --tests --examples --all-features | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
reporter: 'github-pr-check' | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
clippy_flags: --workspace --all-features --tests --examples --bins -- -Dclippy::todo | ||
|
||
lint-docs: | ||
runs-on: ubuntu-latest | ||
|
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 |
---|---|---|
|
@@ -21,18 +21,8 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install stable | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable-x86_64-unknown-linux-gnu | ||
profile: minimal | ||
override: true | ||
|
||
- name: Generate Cargo.lock | ||
uses: actions-rs/cargo@v1 | ||
with: { command: generate-lockfile } | ||
- name: Cache Dependencies | ||
uses: Swatinem/[email protected] | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: { toolchain: nightly } | ||
|
||
- name: Generate coverage file | ||
run: | | ||
|