Skip to content

Fix the strang docker fail on rail (#467) #3

Fix the strang docker fail on rail (#467)

Fix the strang docker fail on rail (#467) #3

Workflow file for this run

name: Backend
on:
push:
paths:
- ".github/workflows/backend.yml"
- "backend/**"
- "package.json"
pull_request:
branches:
- main
paths:
- "backend/**"
permissions: read-all
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.0'
- name: Build
run: go mod download && go build -o main ./cmd/backend/backend.go
working-directory: backend