Skip to content

Commit

Permalink
Improve SQLite Installation Step in CI Workflow
Browse files Browse the repository at this point in the history
Update package list before installing SQLite in the CI workflow to ensure the latest package repository is used. This change helps avoid potential issues with outdated package listings and improves overall reliability of the installation process.
  • Loading branch information
eliasjpr committed Aug 12, 2024
1 parent df0e2a2 commit 3fb6402
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/crystal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,10 @@ jobs:
- 5432:5432
steps:
- uses: actions/checkout@v3
- name: Install SQLite
run: apt-get install -y sqlite3
- name: Update package list and install SQLite
run: |
apt-get update
apt-get install -y sqlite3
- name: Verify SQLite installation
run: sqlite3 --version
- name: Install dependencies
Expand Down

0 comments on commit 3fb6402

Please sign in to comment.