Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Touch-up CI to closer match Rustls CI #85

Merged
merged 6 commits into from
Dec 1, 2023
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
80 changes: 67 additions & 13 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ name: rustls
permissions:
contents: read

on: [push, pull_request]
on:
push:
pull_request:
merge_group:
schedule:
- cron: '0 18 * * *'

jobs:
build:
Expand All @@ -26,7 +31,7 @@ jobs:
rust: stable
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false

Expand All @@ -36,26 +41,26 @@ jobs:
toolchain: ${{ matrix.rust }}

- name: cargo build (debug; default features)
run: cargo build
run: cargo build --locked
cpu marked this conversation as resolved.
Show resolved Hide resolved

- name: cargo test (debug; default features)
run: cargo test
run: cargo test --locked
env:
RUST_BACKTRACE: 1

- name: cargo test (debug; all features)
run: cargo test --all-features
run: cargo test --locked --all-features
env:
RUST_BACKTRACE: 1

- name: cargo build (debug; no default features)
run: cargo build --no-default-features
run: cargo build --locked --no-default-features

- name: cargo test (debug; no default features; no run)
run: cargo test --no-default-features --no-run
run: cargo test --locked --no-default-features --no-run

- name: cargo test (release; no run)
run: cargo test --release --no-run
run: cargo test --locked --release --no-run

- name: run macOS integration test
if: matrix.os == 'macos-latest'
Expand All @@ -69,7 +74,7 @@ jobs:
os: [ubuntu-20.04, macos-latest, windows-latest]
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false

Expand All @@ -78,14 +83,48 @@ jobs:
with:
toolchain: "1.60"

- run: cargo check --lib --all-features
- run: cargo check --locked --lib --all-features

minimal-versions:
name: Check minimum versions of direct dependencies
runs-on: ubuntu-20.04
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Install rust toolchain
uses: dtolnay/rust-toolchain@nightly

- name: Install cargo-minimal-versions
uses: taiki-e/install-action@cargo-minimal-versions

# cargo-minimal-versions requires cargo-hack
- name: Install cargo-hack
uses: taiki-e/install-action@cargo-hack

- name: Check direct-minimal-versions
run: cargo minimal-versions --direct --ignore-private check

semver:
name: Check semver compatibility
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Check semver
uses: obi1kenobi/cargo-semver-checks-action@v2

format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install rust toolchain
Expand All @@ -100,11 +139,26 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- run: cargo clippy --all-features -- --deny warnings
- run: cargo clippy --locked --all-features -- --deny warnings

clippy-nightly:
name: Clippy (Nightly)
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@nightly
with:
components: clippy
- run: cargo clippy --locked --all-features -- --deny warnings

1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
Cargo.lock
target/
*.gcda
*.gcno
Expand Down
Loading