Skip to content

Bump the actions group with 1 update #36

Bump the actions group with 1 update

Bump the actions group with 1 update #36

Workflow file for this run

name: Run e2e Tests
on:
push:
branches:
- "main"
pull_request:
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: imjasonh/setup-crane@00c9e93efa4e1138c9a7a5c594acd6c75a2fbf0c # v0.3
name: Setup crane 🪿 ♥️ 🏗️
- name: Install Cosign 🪿 ♥️ ·∫·
uses: sigstore/cosign-installer@e1523de7571e31dbe865fd2e80c5c7c23ae71eb4 # v3.4.0
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v2.2.0
with:
go-version: '1.21'
check-latest: true
- name: Check out code onto GOPATH
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- name: Launch Registry
run: |
if [ "$(docker inspect -f '{{.State.Running}}' registry 2>/dev/null || true)" != 'true' ]; then
docker run -d --restart=always -p "127.0.0.1:5000:5000" --network bridge --name registry \
registry:2
fi
- name: Push Test Images
run: |
./scripts/e2e.sh
- name: Run Tests
run: |
go test -v ./...