Skip to content

デバッグ用のコードを追加した。 #39

デバッグ用のコードを追加した。

デバッグ用のコードを追加した。 #39

Workflow file for this run

name: Go CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Get dependencies
run: go get -v -t -d ./...
- name: Run tests
run: go test ./...
env:
API_KEY_GITHUB: ${{ secrets.API_KEY_GITHUB }}