Skip to content

fix: add name for ci #441

fix: add name for ci

fix: add name for ci #441

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, edited, reopened, synchronize, ready_for_review]
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
name: ci
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Install dependencies
run: go mod tidy
- name: dockerUp
run: sudo make docker-test-up
- name: Test
run: make test
- name: dockerDown
run: sudo make docker-test-down
- name: Lint
run: make lint