This repository has been archived by the owner on Dec 11, 2024. It is now read-only.
docs: 現時点での想定しているドメインモデルを作成 #66
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.20" | |
- name: Install server Dependencies | |
working-directory: ./server | |
run: go mod download | |
- name: server Build Check | |
working-directory: ./server/cmd/server | |
run: go build -o main . |