Kubeconfig
allow certificate_authority_data
not present in ExecAuthCluster
#3051
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: clippy | |
on: | |
pull_request: | |
paths: | |
- '**.rs' | |
- '**.toml' | |
- '**.yml' | |
jobs: | |
clippy_nightly: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
components: clippy | |
override: true | |
- uses: actions-rs/clippy-check@v1 | |
with: | |
args: "--workspace" | |
token: ${{ secrets.GITHUB_TOKEN }} |