ci: restore the workflow mistakenly removed earlier

This commit is contained in:
Bruno Carlin 2025-06-09 16:51:44 +02:00
parent fdf99daa9c
commit d0c4864582

View file

@ -0,0 +1,22 @@
on: [push]
jobs:
linting:
runs-on: docker
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- uses: https://github.com/golangci/golangci-lint-action@v6
tests:
runs-on: docker
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: Install dependencies
run: go get .
- name: Run tests
run: go test