read also upper case achilles tables (#407) #40
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
on: | |
push: | |
branches: [main, master, test] | |
pull_request: | |
branches: [main, master] | |
name: snowflake-odbc-test | |
jobs: | |
Postgres-test: | |
# if: github.repository == 'darwin-eu/CDMConnector' | |
runs-on: ubuntu-latest | |
container: | |
image: executionengine.azurecr.io/darwin-base:v0.2 | |
env: | |
SNOWFLAKE_CONNECTION_STRING: ${{ secrets.SNOWFLAKE_CONNECTION_STRING }} | |
SNOWFLAKE_USER: ${{ secrets.SNOWFLAKE_USER }} | |
SNOWFLAKE_SERVER: ${{ secrets.SNOWFLAKE_SERVER }} | |
SNOWFLAKE_PASSWORD: ${{ secrets.SNOWFLAKE_PASSWORD }} | |
SNOWFLAKE_DATABASE: ${{ secrets.SNOWFLAKE_DATABASE }} | |
SNOWFLAKE_WAREHOUSE: ${{ secrets.SNOWFLAKE_WAREHOUSE }} | |
SNOWFLAKE_DRIVER: "/usr/lib/snowflake/odbc/lib/libSnowflake.so" | |
SNOWFLAKE_CDM_SCHEMA: ${{ secrets.SNOWFLAKE_CDM_SCHEMA }} | |
SNOWFLAKE_SCRATCH_SCHEMA: ${{ secrets.SNOWFLAKE_SCRATCH_SCHEMA }} | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
TESTTHAT_CPUS : 1 | |
name: Snowflake test (odbc driver) | |
strategy: | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run tests on Snowflake with odbc driver | |
run: R -e 'withr::with_envvar(new = c("CI_TEST_DB" = "snowflake"), testthat::test_local())' | |