Skip to content

chore: argo status updater tests #463

chore: argo status updater tests

chore: argo status updater tests #463

name: Run unit tests
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
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@v3
with:
go-version: '1.20.4'
- name: Install swag
run: go install github.com/swaggo/swag/cmd/swag@latest
- name: Generate swagger docs
run: make docs
- name: Install mockgen
run: go install github.com/golang/mock/[email protected]
- 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 }}