This commit is contained in:
26
.gitea/workflows/lint-and-test.yaml
Normal file
26
.gitea/workflows/lint-and-test.yaml
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
name: "Linting and tests"
|
||||
run-name: "Linting and tests"
|
||||
on:
|
||||
workflow_call:
|
||||
|
||||
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:v4
|
||||
with:
|
||||
command: "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:v4
|
||||
with:
|
||||
command: "task test"
|
||||
10
.gitea/workflows/on-push.yaml
Normal file
10
.gitea/workflows/on-push.yaml
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
name: "Linting and tests"
|
||||
run-name: "Linting and tests"
|
||||
on:
|
||||
- push
|
||||
|
||||
jobs:
|
||||
LintAndTest:
|
||||
uses: ./.gitea/workflows/lint-and-test.yaml
|
||||
secrets: inherit
|
||||
Reference in New Issue
Block a user