fix(deps): update k8s.io/utils digest to 49e7df5 #1066
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: tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
name: CI tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Import environment variables from file | |
run: cat ".github/env" >> $GITHUB_ENV | |
- name: Run license check | |
run: make check-license | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '${{ env.golang-version }}' | |
- name: Run code format check | |
run: make format | |
- name: Run unit tests | |
run: make test | |
- name: Run e2e tests | |
run: make test-e2e |