Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

ci: publish to docker hub #50

ci: publish to docker hub

ci: publish to docker hub #50

Workflow file for this run

name: Test
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run unit tests
run: go test -v ./src/tests
- name: Run formatter
run: test -z $(gofmt -l ./src)
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55.2