Skip to content

Commit e75db30

Browse files
committed
Add deployment tests
1 parent 9fb768b commit e75db30

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/deployment_test.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
on:
2+
push:
3+
tags:
4+
- v*
5+
branches:
6+
- main
7+
pull_request:
8+
name: Deployment Test
9+
jobs:
10+
test:
11+
strategy:
12+
matrix:
13+
go-version: [1.21.x,]
14+
platform: [ubuntu-latest]
15+
runs-on: ${{ matrix.platform }}
16+
steps:
17+
- name: Install Go
18+
uses: actions/setup-go@v2
19+
with:
20+
go-version: ${{ matrix.go-version }}
21+
- name: Checkout code
22+
uses: actions/checkout@v2
23+
- name: Test Deployments
24+
run: go test -v ./deployment/...

0 commit comments

Comments
 (0)