Skip to content

New Release (#46)

New Release (#46) #92

Workflow file for this run

name: evervault-e2e-tests
on: [push]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu]
ruby: [3.0, 3.1, 3.2]
runs-on: ${{ matrix.os }}-latest
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: bundle install
- run: bundle exec rake e2e_tests
env:
EVERVAULT_APP_UUID: ${{ secrets.EV_APP_UUID }}
EVERVAULT_API_KEY: ${{ secrets.EV_API_KEY }}
EVERVAULT_FUNCTION_NAME: ${{ secrets.EV_FUNCTION_NAME }}
EVERVAULT_INITIALIZATION_ERROR_FUNCTION_NAME: ${{ secrets.EV_INITIALIZATION_ERROR_FUNCTION_NAME }}
EVERVAULT_SYNTHETIC_ENDPOINT_URL: ${{ secrets.EVERVAULT_SYNTHETIC_ENDPOINT_URL }}