Skip to content

show url embeds less #174

show url embeds less

show url embeds less #174

Workflow file for this run

name: CI/CD
on:
push:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
codestyle:
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.22
- name: checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: go fmt
run: test -z "$(gofmt -e -d -s . | tee /dev/stderr)"
- name: go vet
run: go vet ./...
- name: go build
run: go build