[ENV] : docker-compose周りの整備 #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-check | |
on: | |
pull_request: | |
jobs: | |
server-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Golang | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.23" | |
- name: Install server Dependencies | |
working-directory: . | |
run: go mod download | |
- name: server Build Check | |
working-directory: ./cmd/server | |
run: go build -o main . |