fix(deps): update module github.com/slack-go/slack to v0.15.0 #956
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: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
go: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v1 | |
- name: asdf_install | |
uses: asdf-vm/actions/install@v1 | |
- name: Test | |
run: | | |
export PATH=${PATH}:`go env GOPATH`/bin | |
go install github.com/magefile/mage | |
mage setuptest | |
mage test | |
mage gomodtidy | |
docker-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v1 | |
- name: Attempt build the Docker image | |
run: docker build . |