Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/go_modules/go_modules-7b0c521a28
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisakura authored Sep 8, 2024
2 parents d5bcb27 + 7ac7444 commit f38e49c
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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

0 comments on commit f38e49c

Please sign in to comment.