Skip to content

feat: Microsoft Teams plugin with Graph API messaging and change noti… #1

feat: Microsoft Teams plugin with Graph API messaging and change noti…

feat: Microsoft Teams plugin with Graph API messaging and change noti… #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
GONOSUMCHECK: github.com/GoCodeAlone/*
GONOSUMDB: github.com/GoCodeAlone/*
GOPRIVATE: github.com/GoCodeAlone/*
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.26'
cache: true
- name: Configure git for private modules
run: git config --global url."https://${{ secrets.RELEASES_TOKEN }}@github.com/".insteadOf "https://github.com/"
- name: Resolve dependencies
run: go mod tidy
- name: Build
run: go build ./...
- name: Test
run: go test -race ./...
- name: Vet
run: go vet ./...