Skip to content

Initial implementation of K8s-Deploy-Watcher with unit tests and GitH… #2

Initial implementation of K8s-Deploy-Watcher with unit tests and GitH…

Initial implementation of K8s-Deploy-Watcher with unit tests and GitH… #2

Workflow file for this run

name: Go CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.16'
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test ./... -v