Skip to content

Feat: build multi platform docker #35

Feat: build multi platform docker

Feat: build multi platform docker #35

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
run:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Build
run: |
go build -v ./...
- name: Test
run: |
go test -v ./...