Skip to content

chore: Rename workflow folder and Fix the Dockerfile syntax #1

chore: Rename workflow folder and Fix the Dockerfile syntax

chore: Rename workflow folder and Fix the Dockerfile syntax #1

Workflow file for this run

name: lint_and_test
on:
push:
jobs:
golangci:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: ^1.20
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
- name: build
run: make build
- name: testing
run: make test