Skip to content

feat(workflows): add basic golangci-lint setup #461

feat(workflows): add basic golangci-lint setup

feat(workflows): add basic golangci-lint setup #461

name: Run unit tests
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
env:
GOLANG_VERSION: '1.20.4'
jobs:
golangci:
name: GolangCI
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GOLANG_VERSION }}
cache: false
- name: Install project dependencies
run: make install-deps mocks docs
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.53
test:
name: Test
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
mock:
image: shini4i/argo-watcher-mock:v0.0.5
ports:
- 8081:8081
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GOLANG_VERSION }}
- name: Install project dependencies
run: make install-deps mocks docs
- name: Run tests
env:
DB_HOST: localhost
DB_USER: postgres
DB_NAME: postgres
DB_PASSWORD: postgres
STATE_TYPE: in-memory
ARGO_URL: http://localhost:8081
run: make test
- name: SonarCloud Scan
uses: sonarsource/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}