fix: cleanup workflows and makefile #2
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
# 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 | ||
env: | ||
SKIP_EMAIL_INTEGRATION_TESTS=true | ||
Check failure on line 26 in .github/workflows/acc-test.yml GitHub Actions / acceptanceInvalid workflow file
|
||
SKIP_EXTERNAL_TABLE_TEST=true | ||
SKIP_NOTIFICATION_INTEGRATION_TESTS=true | ||
SKIP_SAML_INTEGRATION_TESTS=true | ||
SKIP_STREAM_TEST=true |