Skip to content

Bump alpine from 3.20.1 to 3.20.2 #130

Bump alpine from 3.20.1 to 3.20.2

Bump alpine from 3.20.1 to 3.20.2 #130

Workflow file for this run

name: PR CI Build
on:
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.1
check-latest: true
cache-dependency-path: |
src/go.sum
- name: Build
env:
GOPROXY: "https://proxy.golang.org"
working-directory: src
run: go build
- name: Test
env:
GOPROXY: "https://proxy.golang.org"
working-directory: src
run: go test -v