Skip to content

ci: add build testing #1

ci: add build testing

ci: add build testing #1

Workflow file for this run

name: Test
on:
push:
pull_request:
branches:
- main
- dev
merge_group:
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.20
- name: Install dependencies
run: go mod download
- name: Build
run: go build -v -o ./backend