20 lines
412 B
YAML
20 lines
412 B
YAML
name: Unit Tests
|
|
on: [push]
|
|
jobs:
|
|
Run-All:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: src
|
|
steps:
|
|
- name: Repo Code Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Golang Setup
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.18
|
|
|
|
- run: echo "Running {{ github.repository }} deployment unit tests."
|
|
- run: go test ./...
|