Skip to content

Bump github.com/gin-gonic/gin from 1.7.2 to 1.9.0 #46

Bump github.com/gin-gonic/gin from 1.7.2 to 1.9.0

Bump github.com/gin-gonic/gin from 1.7.2 to 1.9.0 #46

Workflow file for this run

name: "Continuous Integration"
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16.x
- name: Checkout code
uses: actions/checkout@v2
- name: Generate vendor directory
run: make ensure-vendor
- name: Lint
run: make lint
- name: Secure dockerfile
run: make dockerfile-security
test:
needs:
- lint
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16.x
- name: Checkout code
uses: actions/checkout@v2
- name: Unit Tests
run: make test