Skip to content

Commit

Permalink
Add open ssl
Browse files Browse the repository at this point in the history
  • Loading branch information
tachyons committed Nov 27, 2022
1 parent f3667cd commit 09d9545
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rubyonrails.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,16 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
# Add or replace dependency steps here
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1 # v1.115.3
with:
bundler-cache: true
# Add or replace database setup steps here
- name: Set up database schema
run: bin/rails db:schema:load
# Add or replace test runners here
- name: Configure keys
run: |
openssl genrsa -out config/private.pem 2048
openssl rsa -in config/private.pem -outform PEM -pubout -out config/public.pem
- name: Run tests
run: bundle exec rspec

Expand All @@ -54,7 +55,6 @@ jobs:
uses: ruby/setup-ruby@v1 # v1.115.3
with:
bundler-cache: true
# Add or replace any other lints here
- name: Security audit dependencies
run: bundle exec bundler-audit --update
- name: Security audit application code
Expand Down

0 comments on commit 09d9545

Please sign in to comment.