変更履歴にレガシー録画も recording_metadata を使用する旨を記載する #79
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: ci | |
on: | |
push: | |
branches-ignore: | |
- "master" | |
tags-ignore: | |
- "*" | |
jobs: | |
build: | |
name: ci | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: ./go.mod | |
- run: go version | |
- run: go fmt . | |
- uses: dominikh/staticcheck-action@v1 | |
with: | |
version: "2024.1.1" | |
install-go: false | |
- name: Test | |
run: make test | |
- name: Build | |
run: make |