chore(deps): bump google.golang.org/api from 0.241.0 to 0.242.0 #160
This file contains hidden or 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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23" | |
# firebase-toolsのインストール | |
# 参考 | |
# https://qiita.com/nukotsuka/items/3384ad7e6c4a429b2032 | |
- name: Install firebase-tools | |
run: | | |
yarn global add firebase-tools | |
echo "FIREBASE_VIRSION=$(firebase --version)" >> $GITHUB_ENV | |
- name: Cache firebase emulators | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/firebase/emulators | |
key: ${{ runner.os }}-firebase-emulators-${{ env.FIREBASE_VIRSION }} | |
# test | |
- run: firebase emulators:exec --project test 'go test ./...' |