Files
vikunja-notifier/.gitea/workflows/on-push.yml
T
pztrn d3a30a9033
Linting and tests / LintingAndTests (push) Successful in 32s
CI things.
2026-06-10 10:27:12 +05:00

21 lines
497 B
YAML

---
name: "Linting and tests"
run-name: "Linting and tests"
on:
- push
jobs:
LintingAndTests:
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"
- name: "tests"
uses: docker://code.pztrn.name/containers/go-toolbox:v10
with:
command: "/usr/local/bin/task test"