From 44db0a54fdd6cfc3bd3a245c0f8c4cfeca106f0e Mon Sep 17 00:00:00 2001 From: eebbesen Date: Sat, 12 Oct 2024 19:09:24 -0500 Subject: [PATCH] environments --- .github/workflows/ruby.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index d73fd4c..ca6736a 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -22,13 +22,13 @@ jobs: - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 - env: - GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }} - GOOGLE_APPLICATION_CREDENTIALS: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }} with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Run tests + env: + GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }} + GOOGLE_APPLICATION_CREDENTIALS: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }} run: bundle exec rake spec - name: Run RuboCop run: bundle exec rubocop