Skip to content

Commit

Permalink
Add SQLite dev files to CI workflow setup
Browse files Browse the repository at this point in the history
Updated the GitHub Actions workflow to include the SQLite development files during the package installation. This ensures that dependencies requiring SQLite headers can properly compile, improving build reliability and consistency.

Resolves #42
  • Loading branch information
eliasjpr committed Aug 12, 2024
1 parent 3fb6402 commit c7a93ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/crystal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ jobs:
- 5432:5432
steps:
- uses: actions/checkout@v3
- name: Update package list and install SQLite
- name: Update package list and install SQLite and development files
run: |
apt-get update
apt-get install -y sqlite3
apt-get install -y sqlite3 libsqlite3-dev
- name: Verify SQLite installation
run: sqlite3 --version
- name: Install dependencies
Expand Down

0 comments on commit c7a93ac

Please sign in to comment.