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

Msrv check on CI for #668 #687

Merged
merged 5 commits into from
Nov 20, 2021
Merged
Changes from 1 commit
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
Next Next commit
check msrv on CI
Signed-off-by: clux <sszynrae@gmail.com>
clux committed Oct 30, 2021
commit bec340851bab86731b46f9088d1d870d1bb93b47
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -55,6 +55,22 @@ jobs:
run: cargo test -p examples --example crd_api --no-default-features --features=deprecated,kubederive,native-tls
if: matrix.os == 'ubuntu-latest'

check-msrv:
# Run `cargo check` on our minimum supported Rust version (1.56.0).
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.56.0
profile: minimal
override: true
- name: Check
uses: actions-rs/cargo@v1
with:
command: check
args: --all

integration:
# Integration tests are linux only
runs-on: ubuntu-latest