Initial commit.

This commit is contained in:
2025-09-09 19:53:24 +05:00
commit b65b8a9e72
14 changed files with 438 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
---
name: "Linting and tests"
run-name: "Linting and tests"
on:
- push
jobs:
Linting:
runs-on: "ubuntu-22.04"
steps:
- name: "checkout source"
uses: actions/checkout@v4
- name: "lint"
uses: docker://code.pztrn.name/containers/go-toolbox:v5
with:
command: "/usr/local/bin/task lint"
Tests:
runs-on: "ubuntu-22.04"
steps:
- name: "checkout source"
uses: actions/checkout@v4
- name: "tests"
uses: docker://code.pztrn.name/containers/go-toolbox:v5
with:
command: "/usr/local/bin/task test"