Skip to content

build: bump alpine from 3.17.3 to 3.18.0 #432

build: bump alpine from 3.17.3 to 3.18.0

build: bump alpine from 3.17.3 to 3.18.0 #432

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
paths-ignore:
- "LICENSE"
- "**.md"
- "examples/*"
- "templates/*"
jobs:
unit:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Install dependencies
run: make get-deps
- name: Build docker-gen
run: make docker-gen
- name: Check code formatting
run: make check-gofmt
- name: Run tests
run: go test -race -v ./internal/...