Files
pztrn 3d43b8a84e
Linting and tests / Linting (push) Failing after 30s
Linting and tests / Tests (push) Successful in 25s
Initial commit.
2026-06-10 10:23:00 +05:00

27 lines
604 B
YAML

---
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:v10
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:v10
with:
command: "/usr/local/bin/task test"