Skip to content

Commit

Permalink
--no-message
Browse files Browse the repository at this point in the history
  • Loading branch information
aristotelesbr committed Jan 30, 2024
1 parent 29b12f7 commit 1489c8d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,19 @@ jobs:

steps:
- uses: actions/checkout@v4

- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true

- name: Update Bundler
run: gem install bundler

- name: Install dependencies
run: bundle install

- name: Setup database
run: RACK_ENV='test' ruby db/setup.rb
run: |
chmod +x db/setup.rb
RACK_ENV='test' ./db/setup.rb
- name: Run tests
timeout-minutes: 10
Expand Down
2 changes: 2 additions & 0 deletions db/setup.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env ruby

# frozen_string_literal: true

require 'sqlite3'
Expand Down

0 comments on commit 1489c8d

Please sign in to comment.