Skip to content

Bump go docker build #112

Bump go docker build

Bump go docker build #112

Workflow file for this run

---
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
Test:
strategy:
matrix:
os:
- ubuntu-latest
#- macOS-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ^1.19
- name: Run unit tests
run: |
go test -count=1 ./internal/...
- name: Run functional tests
run: |
go test -count=1 ./test/functional/...