Skip to content

Commit

Permalink
Update codeowners and add pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jvasquezrojas committed Nov 28, 2024
1 parent 60cc89c commit cadd492
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @sfc-gh-turbaszek @sfc-gh-jmoralescarmiol @sfc-gh-jvasquezrojas @sfc-gh-astus
* @sfc-gh-turbaszek @sfc-gh-jvasquezrojas @sfc-gh-astus @sfc-gh-jmartinezramirez @sfc-gh-ecuberojimenez @sfc-gh-asalazarelizondo @sfc-gh-osalazarlizano @sfc-gh-ogarciabarquero @sfc-gh-gvenegascastro @sfc-gh-lcalderonachio
38 changes: 38 additions & 0 deletions .github/workflows/test-install-snowflake-cli-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: set-unboud-pipx-variable-test
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:

jobs:
set-unboud-pipx-variable-test:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest

env:
SNOWFLAKE_CONNECTIONS_MYCONNECTION_PASSWORD: ${{ secrets.SNOWFLAKE_PASSWORD }}
SNOWFLAKE_CONNECTIONS_MYCONNECTION_ACCOUNT: ${{ secrets.SNOWFLAKE_ACCOUNT }}
PIPX_BIN_DIR: null

name: Install Snowflake CLI in ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Snowflake CLI
uses: ./
id: setup_snowcli
with:
cli-version: '2.1.0'
default-config-file-path: '.github/workflows/tests-files/config.toml'

- name: Test connection
shell: bash
run: |
snow --version
snow connection list

0 comments on commit cadd492

Please sign in to comment.