Skip to content

Commit

Permalink
Add e2e workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
david-martin committed Aug 28, 2023
1 parent 9826e9b commit 7aa3a86
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: continuous-integration

on:
push:
branches:
- main
- release*
tags:
- v1.*
- v2.*
pull_request:
branches:
- main
- release*

permissions:
contents: read

env:
E2E_SETUP_KIND: yes
E2E_SETUP_KUBECTL: yes
SUDO: sudo
GO_VERSION: "^1.20"

jobs:
ci-e2e-tests:
name: ci-e2e-tests
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3

- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
id: go

- name: End-to-end tests
run: |
make test

0 comments on commit 7aa3a86

Please sign in to comment.