Skip to content

fix(certs): automatically refresh tls certificates with on_demand_tls… #81

fix(certs): automatically refresh tls certificates with on_demand_tls…

fix(certs): automatically refresh tls certificates with on_demand_tls… #81

Workflow file for this run

name: golang
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup-go
uses: actions/setup-go@v4
with:
go-version: '1.20'
cache: true
cache-dependency-path: go.sum
- name: build
run: go build -v ./...
- name: test
run: go test ./...
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup-go
uses: actions/setup-go@v4
with:
go-version: '1.20'
cache: true
cache-dependency-path: go.sum
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55.2