Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-22.04, windows-latest, macos-latest ]
os: [ubuntu-22.04, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Setup Rust Toolchain
Expand All @@ -37,6 +37,7 @@ jobs:
if: runner.os == 'Windows'
uses: seanmiddleditch/gha-setup-ninja@v4
- name: Check clippy
shell: bash
run: |
cargo clippy --all-features --all-targets -- -Dwarnings
- name: Check Docs
Expand Down
46 changes: 46 additions & 0 deletions .github/workflows/ci_check_minimal.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Check

on:
push:
branches:
- master
pull_request:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true

env:
RUST_BACKTRACE: 1

jobs:
check:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Setup Rust Toolchain
run: |
rustup default nightly
rustup component add clippy
- uses: taiki-e/install-action@cargo-no-dev-deps
- uses: actions/setup-go@v4
with:
go-version: '>=1.18'
- name: Install NASM on Windows
if: runner.os == 'Windows'
uses: ilammy/setup-nasm@v1
- name: Install ninja-build tool on Windows
if: runner.os == 'Windows'
uses: seanmiddleditch/gha-setup-ninja@v4
- name: Check clippy
shell: bash
run: |
cargo no-dev-deps -Zminimal-versions clippy --all-features --lib
- name: Check Docs
run: |
cargo no-dev-deps -Zminimal-versions doc --workspace --all-features --no-deps
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ futures-channel = "0.3.29"
futures-rustls = { version = "0.26.0", default-features = false }
futures-util = "0.3.29"
libc = "0.2.164"
native-tls = "0.2.11"
native-tls = "0.2.13"
nix = "0.30.1"
once_cell = "1.18.0"
os_pipe = "1.1.4"
Expand Down
Loading