This repository has been archived by the owner on Dec 11, 2024. It is now read-only.
Presenter内のuint64
のIDをstring
に変更, go環境周りの整備
#192
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: ./server | |
run: go mod download | |
- name: server Build Check | |
working-directory: ./server/cmd/server | |
run: go build -o main . |