FILE / ScuroNeko/gitea-runner-test

.gitea/workflows/go.yaml

Исходный файл и его история в репозитории.
FILE fc514885cb5230a8e5957b7f36d9d034308a6360
Files
gitea-runner-test/.gitea/workflows/go.yaml
T
ScuroNeko fc514885cb
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 8s
Build and push image / docker (push) Successful in 25s
Python CI / python (push) Failing after 12s
Golang lint / GoLint (push) Has been cancelled
test
2026-04-23 18:26:48 +03:00

17 lines
382 B
YAML

name: Golang lint
run-name: Linting code in ${{ gitea.repository }} by ${{ gitea.actor }} 🚀
on: [push]
jobs:
GoLint:
runs-on: go-latest
steps:
- name: Check out repository code
uses: actions/checkout@v6
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.11
skip-save-cache: true