Skip to content
This repository has been archived by the owner on Apr 17, 2024. It is now read-only.

feat: ci integration #1

feat: ci integration

feat: ci integration #1

Workflow file for this run

name: Code Review
on:
pull_request:
branches:
- develop
jobs:
lint-and-test:
name: Lint and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.21'
- name: Lint
run: |
make lint
- name: Test
run: make test