Skip to content

Added login, register, and authorization #52

Added login, register, and authorization

Added login, register, and authorization #52

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '1.21.3' # The Go version to download (if necessary) and use.
- run: go version
- name: Install dependencies
run: |
go mod tidy
go mod vendor
- name: Build
run: go build -v ./...