Skip to content

chore(deps): update crazy-max/ghaction-import-gpg digest to 92a10f9 #296

chore(deps): update crazy-max/ghaction-import-gpg digest to 92a10f9

chore(deps): update crazy-max/ghaction-import-gpg digest to 92a10f9 #296

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
paths-ignore:
- '**.md'
tags-ignore:
- 'v**' # Don't run CI tests on release tags
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- run: make go.mk
- uses: ./go.mk/.github/actions/setup
- uses: ./go.mk/.github/actions/pre-check
- name: Run tests
run: make test-verbose
e2e-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install Ginkgo
shell: bash
run: go install github.com/onsi/ginkgo/v2/ginkgo@latest
- name: Run E2E tests
shell: bash
env:
EXOSCALE_API_KEY: ${{ secrets.EXOSCALE_API_KEY }}
EXOSCALE_API_SECRET: ${{ secrets.EXOSCALE_API_SECRET }}
EXOSCALE_API_ZONE: ch-gva-2
run: |
cd e2e
go install github.com/onsi/ginkgo/v2/ginkgo@latest
~/go/bin/ginkgo -v --timeout=30m
build:
needs: unit-test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- run: make go.mk
- uses: ./go.mk/.github/actions/setup
- name: Build
run: make build
docker-build:
needs: unit-test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- run: make go.mk
- uses: ./go.mk/.github/actions/setup
- name: Build Docker image
run: make docker