Skip to content

fix: add edit update status, lint #13

fix: add edit update status, lint

fix: add edit update status, lint #13

name: backend-checks
on:
push:
branches:
- main
paths:
- 'backend/**'
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
checks:
name: backend-checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.24.2
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: v2.1
working-directory: ./backend
- name: Install
run: go get .
working-directory: ./backend
- name: Build
run: go build .
working-directory: ./backend
- name: Tests
run: go test
working-directory: ./backend