Skip to content

Merge pull request #2 from deepgram-starters/dependabot/go_modules/ha… #3

Merge pull request #2 from deepgram-starters/dependabot/go_modules/ha…

Merge pull request #2 from deepgram-starters/dependabot/go_modules/ha… #3

Workflow file for this run

name: Check - All linters, etc
on:
push:
branches:
- main
- release-*
tags-ignore:
- "**"
jobs:
build:
name: Change to Main/Release Branch
# Only run this job if we're in the main repo, not a fork.
if: github.repository == 'deepgram-starters/example-starter-plugin'
runs-on: ubuntu-latest
steps:
- name: Checkout code by commit
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: "1.19"
id: go
- name: Ensure dependencies installed
shell: bash
run: |
make ensure-deps
- name: Run all checks
shell: bash
run: |
make check