build(deps): bump k8s.io/api from 0.25.0 to 0.30.3 in /extensions #209
Workflow file for this run
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
# Copyright 2022 D2iQ, Inc. All rights reserved. | |
# SPDX-License-Identifier: Apache-2.0 | |
name: checks | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Install asdf and tools | |
uses: asdf-vm/actions/install@v1 | |
- name: Run unit tests | |
run: make test | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Install asdf and tools | |
uses: asdf-vm/actions/install@v1 | |
- name: Lint code | |
run: make lint | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Install asdf and tools | |
uses: asdf-vm/actions/install@v1 | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- uses: pre-commit/[email protected] | |
with: | |
extra_args: --all-files | |
env: | |
SKIP: no-commit-to-branch |