.github/workflows/main.yml in translate_self-0.1.0 vs .github/workflows/main.yml in translate_self-0.2.0
- old
+ new
@@ -1,16 +1,19 @@
name: Ruby
on: [push,pull_request]
+env:
+ DEEPL_AUTH_KEY: ${{ secrets.DEEPL_AUTH_KEY }}
+
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0.1
bundler-cache: true
- - name: Run the default task
- run: bundle exec rake
+ - name: Run the RSpec tests
+ run: bundle exec rake spec