Skip to content

Add gh actions ci config #1

Add gh actions ci config

Add gh actions ci config #1

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@v5
with:
go-version: 1.22.5
cache: false
- name: Checkout code
uses: actions/checkout@v4
- name: Check
run: make check
- name: Secure dockerfile
run: make dockerfile-security