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

refactor: project structure #51

refactor: project structure

refactor: project structure #51

Workflow file for this run

name: Tests
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: make test
- name: Run formatter
run: cd src && test -z $(gofmt -l .)
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55.2
working-directory: src