Address Common vs REST Defaults for Clients #72
Workflow file for this run
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: Check - lint | |
on: | |
pull_request: | |
types: | |
- assigned | |
- opened | |
- synchronize | |
- reopened | |
paths: | |
- "**.go" | |
- "**/go.mod" | |
- ".golangci.yaml" | |
jobs: | |
checklint: | |
name: Lint | |
# Only run this job if we're in the main repo, not a fork. | |
if: github.repository == 'deepgram/deepgram-go-sdk' | |
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: Get Date | |
# id: get-date | |
# shell: bash | |
# run: | | |
# echo "date=$(date -u "+%Y-%m")" >> $GITHUB_OUTPUT | |
- name: Restore Lint Cache | |
uses: actions/cache@v3 | |
timeout-minutes: 10 | |
continue-on-error: true | |
with: | |
path: ${{ runner.temp }}/lint_cache | |
# key: ${{ runner.os }}-lint-cache-${{ steps.get-date.outputs.date }} | |
key: ${{ runner.os }}-lint-cache | |
restore-keys: | | |
${{ runner.os }}-lint-cache | |
- name: Run golangci-lint | |
env: | |
GOLANGCI_LINT_CACHE: ${{ runner.temp }}/lint_cache | |
run: | | |
make lint |