Skip to content

環境変数が足りなかったのを追加 #42

環境変数が足りなかったのを追加

環境変数が足りなかったのを追加 #42

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 }}