Skip to content

API Endpoint field in frontend is now readonly for update operations #7

API Endpoint field in frontend is now readonly for update operations

API Endpoint field in frontend is now readonly for update operations #7

Workflow file for this run

name: CI Workflow Backend (Golang)
on:
push:
paths:
- rate_shield/**
pull_request:
paths:
- rate_shield/**
jobs:
backend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./rate_shield
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Install Go Dependencies
run: go mod tidy
- name: Run GolangCI-Lint Check
uses: golangci/golangci-lint-action@v6
with:
working-directory: ./rate_shield
- name: Build Go Application
run: go build -o app ./main.go