Skip to content

Publish images to github #12

Publish images to github

Publish images to github #12

Workflow file for this run

name: Check pull request
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get all git tags
run: git fetch --prune --unshallow --tags
- uses: actions/setup-go@v3
with:
go-version: '>=1.17.0'
- name: Run tests
run: make test
- name: Build Docker image
run: make image