Skip to content

chore(deps): bump github.com/snowflakedb/gosnowflake from 1.6.25 to 1.7.0 #2457

chore(deps): bump github.com/snowflakedb/gosnowflake from 1.6.25 to 1.7.0

chore(deps): bump github.com/snowflakedb/gosnowflake from 1.6.25 to 1.7.0 #2457

Workflow file for this run

name: 'Go formatting checker'
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: ./go.mod
- name: Check Go formatting
run: if [ "$(gofmt -l . | wc -l)" -gt 0 ]; then exit 1; fi
golang-ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: ./go.mod
cache: true
- name: Install golangci-lint
run: make dev-setup
- name: make lint-ci integration
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: make lint-ci
- name: Run golangci-lint
run: make lint-check