Skip to content

Commit

Permalink
chore: attempt CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mromulus committed Dec 5, 2023
1 parent ddd16e8 commit 1a86e5e
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 @@ -7,9 +7,9 @@
name: "Ruby on Rails CI"
on:
push:
branches: [ "main" ]
branches: ["main"]
pull_request:
branches: [ "main" ]
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -37,10 +37,10 @@ jobs:
run: echo $GITHUB_HEAD_REF > CURRENT_VERSION
# Add or replace database setup steps here
- name: Set up database schema
run: env; bin/rails db:schema:load
run: DATABASE_URL="postgres://rails:password@localhost:5432/rails_test" bin/rails db:schema:load
# Add or replace test runners here
- name: Run tests
run: bin/rake
run: DATABASE_URL="postgres://rails:password@localhost:5432/rails_test" bin/rake

lint:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 1a86e5e

Please sign in to comment.