Skip to content

Commit

Permalink
Add deployment tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Koeng101 committed Dec 18, 2023
1 parent 9fb768b commit e75db30
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/deployment_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
push:
tags:
- v*
branches:
- main
pull_request:
name: Deployment Test
jobs:
test:
strategy:
matrix:
go-version: [1.21.x,]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test Deployments
run: go test -v ./deployment/...

0 comments on commit e75db30

Please sign in to comment.