Bump jwt from 2.8.2 to 2.9.3 #266
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
name: CI | |
on: | |
push: | |
branches: "*" | |
pull_request: | |
branches: "*" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@904f3fef85a9c80a3750cbe7d5159268fd5caa9f | |
with: | |
ruby-version: '3.0.6' | |
- name: Install dependencies | |
run: bundle install | |
- name: Build gem | |
run: rake build | |
# Enable this section to allow debugging via SSH | |
#- name: Setup upterm session | |
#uses: lhotari/action-upterm@v1 | |
#with: | |
### limits ssh access and adds the ssh public key for the user which triggered the workflow | |
#limit-access-to-actor: true | |
- name: Install gem | |
run: cd pkg && gem install --local *.gem | |
- name: Run tests | |
run: bundle exec rspec | |
env: # Or as an environment variable | |
SNOWFLAKE_URI: ${{ secrets.SNOWFLAKE_URI }} | |
SNOWFLAKE_ORGANIZATION: ${{ secrets.SNOWFLAKE_ORGANIZATION }} | |
SNOWFLAKE_ACCOUNT: ${{ secrets.SNOWFLAKE_ACCOUNT }} | |
SNOWFLAKE_DEFAULT_WAREHOUSE: $${{ secrets.SNOWFLAKE_DEFAULT_WAREHOUSE }} | |
SNOWFLAKE_USER: ${{ secrets.SNOWFLAKE_USER }} | |
SNOWFLAKE_PASSWORD: ${{ secrets.SNOWFLAKE_PASSWORD }} | |
SNOWFLAKE_PRIVATE_KEY: ${{ secrets.SNOWFLAKE_CLIENT_TEST_PRIVATE_KEY }} |