This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
Finalize login and registration endpoints #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: | |
pull_request: | |
branches: ["main"] | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: "./go.mod" | |
- name: Install Staticcheck | |
run: go install honnef.co/go/tools/cmd/staticcheck@latest | |
- name: Build project and verify dependencies | |
run: go build -v ./... && go mod verify | |
- name: Verify Code Quality | |
run: go vet ./... && staticcheck ./... |