mirror of
https://github.com/navidys/tvxwidgets.git
synced 2025-05-11 19:29:26 +08:00
20 lines
366 B
YAML
20 lines
366 B
YAML
name: Go
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
golangci-lint:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: fedora:latest
|
|
steps:
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '>=1.19.0'
|
|
- uses: actions/checkout@v4
|
|
- run: |
|
|
dnf -y install make
|
|
make .install.golangci-lint
|
|
make lint
|