chore(deps): bump k8s.io/cli-runtime from 0.35.0 to 0.35.3 #2370
This file contains hidden or 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: CI | |
| # Run on PR | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| - reopened | |
| jobs: | |
| build: | |
| # The type of runner that the job will run on | |
| runs-on: ubuntu-latest | |
| # Steps represent a sequence of tasks that will be executed as part of the job | |
| steps: | |
| # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| # Build | |
| - name: Build | |
| run: make build | |
| test: | |
| needs: build | |
| # The type of runner that the job will run on | |
| runs-on: ubuntu-latest | |
| # Steps represent a sequence of tasks that will be executed as part of the job | |
| steps: | |
| # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| # Run tests | |
| - name: Tests | |
| run: | | |
| sudo apt-get update && sudo apt-get install -y libudev-dev | |
| make test | |
| # lint: | |
| # # The type of runner that the job will run on | |
| # runs-on: ubuntu-latest | |
| # # Steps represent a sequence of tasks that will be executed as part of the job | |
| # steps: | |
| # # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
| # - uses: actions/checkout@v3 | |
| # with: | |
| # submodules: true | |
| # - name: Set up Go | |
| # uses: actions/setup-go@v3 | |
| # with: | |
| # go-version: 1.17 | |
| # # Run linter | |
| # - name: Lint | |
| # run: make lint |