Skip to content
This repository has been archived by the owner on Sep 4, 2020. It is now read-only.

Upgrade kube dependency to 0.34.0 #539

Closed
wants to merge 9 commits into from
Closed
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
15 changes: 13 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,23 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Install latest Rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you mean this is a recommend way to always use latest rust version? Will we have risk to do so?

- name: Env check
run: rustc --version
- name: Build
run: cargo build --verbose
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose
- name: Run tests
run: cargo test --verbose
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose
- uses: engineerd/[email protected]
- uses: engineerd/[email protected]
with:
Expand Down
Loading