Skip to content

Bump golang.org/x/crypto from 0.0.0-20190510104115-cbcb75029529 to 0.31.0 in /executor/hack/tools #157

Bump golang.org/x/crypto from 0.0.0-20190510104115-cbcb75029529 to 0.31.0 in /executor/hack/tools

Bump golang.org/x/crypto from 0.0.0-20190510104115-cbcb75029529 to 0.31.0 in /executor/hack/tools #157

Workflow file for this run

---
name: V1 Operator Lint & Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
env:
GOLANG_VERSION: 1.20.9
jobs:
operator-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GOLANG_VERSION }}
- name: lint-operator
run: make -C operator lint
operator-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GOLANG_VERSION }}
- name: test-operator
run: make -C operator test