Skip to content

Update code to support new Microsoft Teams webhook JSON format #69

Update code to support new Microsoft Teams webhook JSON format

Update code to support new Microsoft Teams webhook JSON format #69

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [mod, dev-latest]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: on
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v2
- uses: kevincobain2000/action-gobrew@v2
with:
go-version: ${{ matrix.go }}
- name: Test
run: go test -v ./...
- name: Vet
run: go vet -v ./...
- name: Run Gosec Security Scanner
uses: securego/gosec@master
with:
args: ./...