Skip to content

Adding unit test step #11

Adding unit test step

Adding unit test step #11

Workflow file for this run

name: noaas-go-ci
on: [push]
jobs:
test:
strategy:
matrix:
go-version: [1.22.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Setup Nomad
uses: ./.github/actions/setup-nomad
- name: Unit Tests
num: make unit
- name: CI
run: make ci