remove arg for quay org, IS and MCAD images no longer being built #1
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: Pre-commit | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- 'v*' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
precommit: | |
runs-on: ubuntu-latest | |
container: | |
image: quay.io/opendatahub/pre-commit-go-toolchain:v0.2 # https://github.com/opendatahub-io/data-science-pipelines-operator/blob/main/.github | |
env: | |
XDG_CACHE_HOME: /cache | |
GOCACHE: /cache/go-build | |
GOMODCACHE: /cache/go-mod | |
PRE_COMMIT_HOME: /cache/pre-commit | |
volumes: | |
- /cache | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: v1.19 | |
- name: Activate cache | |
uses: actions/cache@v3 | |
with: | |
path: /cache | |
key: ${{ runner.os }}-cache-${{ hashFiles('**/go.sum', '.pre-commit-config.yaml') }} | |
- name: Run pre-commit checks | |
run: pre-commit run --all-files |