-
Notifications
You must be signed in to change notification settings - Fork 22
43 lines (38 loc) · 892 Bytes
/
e2e.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: E2E
on:
workflow_dispatch:
inputs:
debug_enabled:
type: boolean
description: Run the build with upterm debugging enabled
(https://github.com/lhotari/action-upterm/)
required: false
default: false
pull_request:
branches:
- main
concurrency:
group: e2e-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
jobs:
unit-test:
runs-on: ubuntu-latest
name: Unit Test
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run Unit Tests
run: make test
e2e-test-empty:
runs-on: ubuntu-latest
name: E2E Empty Test
steps:
- name: Echo hello
run: |
echo "hello"
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
- name: Build with Makefile
run: make help