Skip to content

add authentication; refactoring and bugs fixing #54

add authentication; refactoring and bugs fixing

add authentication; refactoring and bugs fixing #54

Workflow file for this run

name: Go
on:
push:
branches:
- "main"
jobs:
build:
name: Build, lint and test
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Go Environment
uses: actions/[email protected]
with:
go-version: 1.22
cache: false # managed by golangci-lint
- name: Download Dependencies
run: go mod download -x
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
- name: Test
run: go test -v -race ./...