We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d99ae5e commit b058cffCopy full SHA for b058cff
.github/actions/setup/action.yaml
@@ -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
@@ -0,0 +1,20 @@
+name: Unit and E2E Tests
+
+on:
+ push:
+ tags-ignore:
+ - '**'
+ branches:
+ - main
10
+ pull_request:
11
12
13
14
+jobs:
15
+ unit-test:
16
+ name: unit-test
17
+ runs-on: ubuntu-latest
18
19
+ - uses: actions/checkout@v3
20
+ - uses: ./.github/actions/setup
0 commit comments