Skip to content

feat: Spotify Authentication #8

feat: Spotify Authentication

feat: Spotify Authentication #8

Workflow file for this run

name: "Build PR"
on:
pull_request:
branches:
- main
jobs:
build:
name: "Build"
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.23"]
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Setup Go ${{ matrix.go-version }}"
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: "Install dependencies"
run: "go mod download"
- name: "Lint"
uses: golangci/golangci-lint-action@v6
with:
version: v1.60
- name: "Build"
run: "go build -o cmd/server/bin/server cmd/server/main.go"