サービスへの接続が成功した時点でリトライ回数をリセットする #198
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: | |
- "main" | |
tags-ignore: | |
- "*" | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: ./go.mod | |
- run: go version | |
- run: go fmt . | |
- name: Patch | |
run: make patch | |
- uses: dominikh/[email protected] | |
with: | |
version: "2023.1.6" | |
install-go: false | |
- name: Test | |
run: make test | |
- name: Build | |
run: make |