build(deps): bump crate-ci/typos from 1.24.6 to 1.25.0 #4811
Workflow file for this run
This file contains hidden or 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: olm | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| env: | |
| GO_VERSION: '1.23' | |
| KIND_IMG_TAG: v1.30.0 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| main: | |
| name: tests | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
| - name: Download binaries | |
| run: | | |
| mkdir -p ${GITHUB_WORKSPACE}/build | |
| echo "${GITHUB_WORKSPACE}/build" >> ${GITHUB_PATH} | |
| make operator-sdk | |
| make opm | |
| - uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 | |
| with: | |
| go-version: ${{ env.GO_VERSION }} | |
| - name: Install dependencies | |
| run: | | |
| sudo ./hack/install-packages | |
| ./hack/install-crun | |
| - name: Create and verify bundle | |
| run: | | |
| make verify-bundle | |
| - name: Create and set up K8s KinD Cluster | |
| run: | | |
| ./hack/kind-with-registry.sh | |
| - name: Run the tests | |
| run: ./hack/ci/e2e-olm.sh | |
| env: | |
| XDG_RUNTIME_DIR: '' |