Skip to content

Commit

Permalink
Merge branch 'main' into user-index
Browse files Browse the repository at this point in the history
  • Loading branch information
GBowman1 authored Sep 17, 2024
2 parents e1e5ed0 + c02c05d commit f506bf4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/rubyonrails.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,13 @@ jobs:
# Add or replace database setup steps here
- name: Set up database schema
run: bin/rails db:schema:load
#
- name: Set up Rails credentials
run: |
mkdir -p ~/.rails
echo "${{ secrets.RAILS_CREDENTIALS_CONTENT }}" > ~/.rails/credentials.yml.enc
echo "${{ secrets.RAILS_MASTER_KEY }}" > ~/.rails/master.key
# Add or replace test runners here
- name: Run tests
run: bin/rake
Expand Down
1 change: 0 additions & 1 deletion db/seeds.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
User.destroy_all
Artist.destroy_all


User.create!(name: 'peterkim_pk1',
email: '[email protected]')

Expand Down

0 comments on commit f506bf4

Please sign in to comment.