Skip to content
This repository has been archived by the owner on Aug 9, 2023. It is now read-only.

Update alpine Docker tag to v3.18.3 #113

Update alpine Docker tag to v3.18.3

Update alpine Docker tag to v3.18.3 #113

Workflow file for this run

name: build
on:
push:
branches:
- "master"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.17.7
- name: Cache Go modules
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build
run: |
go build ./...
- name: Tests
run: |
go test ./...