Skip to content

Merge pull request #41 from cybozu-go/mantlebackup/fix-existing-impl #492

Merge pull request #41 from cybozu-go/mantlebackup/fix-existing-impl

Merge pull request #41 from cybozu-go/mantlebackup/fix-existing-impl #492

Workflow file for this run

name: "e2e"
on:
pull_request:
paths-ignore:
- "**/*.md"
- "CODEOWNERS"
push:
paths-ignore:
- "**/*.md"
- "CODEOWNERS"
branches:
- "main"
jobs:
build:
runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- run: sudo apt-get update
- uses: ./.github/actions/purge-unnecessary-deb-packages
- uses: ./.github/actions/set-up-kvm-for-e2e-tests
- name: cache go dependencies
uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: go-${{ hashFiles('go.sum', 'Makefile', 'versions.mk') }}
restore-keys: |
go-
- run: make -C test/e2e setup
- run: make -C test/e2e test