Skip to content

fix: cleanup workflows and makefile #6

fix: cleanup workflows and makefile

fix: cleanup workflows and makefile #6

Workflow file for this run

# Run secret-dependent integration tests only after /ok-to-test approval
on:
pull_request:
branches: [ main ]
paths-ignore:
- 'README.md'
- 'CHANGELOG.md'
name: acceptance
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: ./go.mod
cache: false
- name: Install dependencies
run: make tools
- name: Create and populate .snowflake/config file
run: mkdir $HOME/.snowflake && echo "${{ secrets.SNOWFLAKE_CONFIG_FILE }}" > $HOME/.snowflake/config
- run: make testacc