Skip to content

Commit

Permalink
Added sqlite3 library install step (#2255)
Browse files Browse the repository at this point in the history
* Added sqlite3 library install step

* Updated lint steps
  • Loading branch information
KesterTan authored Jan 13, 2025
1 parent 8c81601 commit 8267f9a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/rubyonrails.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install SQLite3 library
run: sudo apt-get update && sudo apt-get install -y libsqlite3-dev

- name: Install Ruby
uses: ruby/setup-ruby@v1
Expand All @@ -44,6 +47,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Install SQLite3 library
run: sudo apt-get update && sudo apt-get install -y libsqlite3-dev

- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down

0 comments on commit 8267f9a

Please sign in to comment.