Skip to content

Commit b058cff

Browse files
committed
WIP
1 parent d99ae5e commit b058cff

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.github/actions/setup/action.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
name: setup
3+
description: set up the stage for building and testing
4+
runs:
5+
using: composite
6+
steps:
7+
- uses: actions/setup-go@v3
8+
with:
9+
go-version: 1.19.x

.github/workflows/test.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Unit and E2E Tests
3+
4+
on:
5+
push:
6+
tags-ignore:
7+
- '**'
8+
branches:
9+
- main
10+
pull_request:
11+
branches:
12+
- main
13+
14+
jobs:
15+
unit-test:
16+
name: unit-test
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v3
20+
- uses: ./.github/actions/setup

0 commit comments

Comments
 (0)