Skip to content

Add 'docker' workflow. #10

Add 'docker' workflow.

Add 'docker' workflow. #10

Workflow file for this run

name: Go Build Check
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
jobs:
golang-build:
name: Go Build Check
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
steps:
- name: Setup Golang
uses: actions/setup-go@v4
with:
go-version: '1.20'
cache: false
- name: Check out source code
uses: actions/checkout@v3
- name: Build
run: |
make build