Skip to content

ci: simplify and rename ci worklow #1

ci: simplify and rename ci worklow

ci: simplify and rename ci worklow #1

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.23"
- name: Install Dependencies
run: go mod download
- name: Run Tests
run: go test -v ./...
- name: Run Linter
uses: golangci/golangci-lint-action@v3
with:
version: v1.53.2