This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
ci: adding yq-shim to support v3 and v4 #8505
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
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
- labeled | |
- unlabeled | |
name: Static checks | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
env: | |
GO111MODULE: off | |
GITHUB_USER : ${{ secrets.GITHUB_USER }} | |
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Install Go | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }} | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.19.2 | |
- name: Setup GOPATH | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }} | |
run: | | |
gopath_org=$(go env GOPATH)/src/github.com/kata-containers/ | |
mkdir -p ${gopath_org} | |
ln -s ${PWD} ${gopath_org} | |
- name: Set env | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }} | |
run: | | |
echo "GOPATH=${{ github.workspace }}" >> $GITHUB_ENV | |
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH | |
- name: Checkout code | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }} | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
path: ./src/github.com/${{ github.repository }} | |
- name: Install dependencies | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }} | |
run: | | |
cd ${GOPATH}/src/github.com/kata-containers/tests && ./.ci/setup.sh | |
- name: Static checks | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }} | |
run: | | |
cd ${GOPATH}/src/github.com/kata-containers/tests | |
make static-checks |