Skip to content

Bump kube to 1.1.0 and k8s-openapi to 0.25.0 #55

Bump kube to 1.1.0 and k8s-openapi to 0.25.0

Bump kube to 1.1.0 and k8s-openapi to 0.25.0 #55

Workflow file for this run

name: PR
on:
pull_request:
env:
DOCKER_BUILDKIT: "1"
K8S_OPENAPI_ENABLED_VERSION: "1.30"
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.83.0
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- uses: actions-rs/cargo@v1
with:
toolchain: 1.83.0
command: fmt
args: -- --check
- uses: actions-rs/cargo@v1
with:
toolchain: 1.83.0
command: clippy
args: -- --deny warnings
- uses: actions-rs/cargo@v1
with:
toolchain: 1.83.0
command: install
args: --locked cargo-deny --version=0.16.2
- uses: actions-rs/cargo@v1
with:
toolchain: 1.83.0
command: deny
args: check
test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.83.0
- uses: Swatinem/rust-cache@v2
- uses: actions-rs/cargo@v1
with:
toolchain: 1.83.0
command: test