Skip to content

feat: add retry

feat: add retry #8

Workflow file for this run

name: Go
on: [push]
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: fmtcheck
run: make fmtcheck
test:
name: test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: test
run: make test
- name: testacc
env:
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }}
run: make testacc
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Build
run: make build