|
@@ -80,27 +80,27 @@ jobs:
|
|
|
key: ${{ runner.os }}-rust-${{ inputs.rust-version }}-cargo-${{ hashFiles('**/Cargo.toml', '**/Cargo.lock') }}
|
|
|
- run: cargo version
|
|
|
- name: Build (library)
|
|
|
- run: cargo build --target ${{ inputs.rust-target }} --features ${{ inputs.features }}
|
|
|
+ run: cargo build --target ${{ inputs.rust-target }} --features ${{ inputs.features }} --no-default-features
|
|
|
- name: Build (all targets)
|
|
|
- run: cargo build --all-targets --features ${{ inputs.features }}
|
|
|
+ run: cargo build --all-targets --features ${{ inputs.features }} --no-default-features
|
|
|
- name: Code Formatting
|
|
|
if: inputs.do-style-check
|
|
|
run: cargo fmt --all -- --check
|
|
|
- name: Code Style and Doc Style
|
|
|
if: inputs.do-style-check
|
|
|
run: |
|
|
|
- cargo doc --document-private-items --features ${{ inputs.features }}
|
|
|
- cargo clippy --all-targets --features ${{ inputs.features }}
|
|
|
+ cargo doc --document-private-items --features ${{ inputs.features }} --no-default-features
|
|
|
+ cargo clippy --all-targets --features ${{ inputs.features }} --no-default-features
|
|
|
- name: Unit Test (UNIX)
|
|
|
if: inputs.do-test && runner.os != 'Windows'
|
|
|
run: |
|
|
|
curl -LsSf https://get.nexte.st/latest/linux | tar zxf -
|
|
|
chmod u+x cargo-nextest
|
|
|
- ./cargo-nextest nextest run --features ${{ inputs.features }}
|
|
|
+ ./cargo-nextest nextest run --features ${{ inputs.features }} --no-default-features
|
|
|
- name: Unit Test (Windows)
|
|
|
if: inputs.do-test && runner.os == 'Windows'
|
|
|
run: |
|
|
|
Invoke-WebRequest https://get.nexte.st/latest/windows -OutFile cargo-nextest.zip
|
|
|
Expand-Archive .\cargo-nextest.zip
|
|
|
cp .\cargo-nextest/cargo-nextest.exe .
|
|
|
- .\cargo-nextest.exe nextest run --features ${{ inputs.features }}
|
|
|
+ .\cargo-nextest.exe nextest run --features ${{ inputs.features }} --no-default-features
|