Skip to content

Bump github.com/tavsec/gin-healthcheck from 1.6.1 to 1.6.3 #137

Bump github.com/tavsec/gin-healthcheck from 1.6.1 to 1.6.3

Bump github.com/tavsec/gin-healthcheck from 1.6.1 to 1.6.3 #137

Workflow file for this run

name: Run Lints & Tests
on:
push:
branches:
- dev
pull_request:
branches:
- main
- dev
jobs:
linter:
strategy:
matrix:
go-version: [1.22.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout Code
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- name: Install Required Dependencies
run: go mod tidy -compat=1.22
- name: Build-FE
run: make build-fe
- name: Tests
run: make run-tests