Navid Yaghoobi 02375f4dae initial commit
Signed-off-by: Navid Yaghoobi <navidys@fedoraproject.org>
2023-12-15 19:37:24 +11:00

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