Skip to content

Merge pull request #215 from V01d42/add-generate-url #855

Merge pull request #215 from V01d42/add-generate-url

Merge pull request #215 from V01d42/add-generate-url #855

Workflow file for this run

name: test
on:
push:
branches:
- "**"
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: setup go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: lint
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
staticcheck ./...
- name: vet
run: |
go vet ./...
- name: test
run: |
make test
docker-build-test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Build container image
uses: docker/build-push-action@v5
with:
push: false
tags: ${{ steps.meta.outputs.tags }}