Skip to content

Commit

Permalink
Add SQLite setup to GitHub Actions workflow
Browse files Browse the repository at this point in the history
Integrate SQLite setup in the Crystal workflow to ensure the availability of a specific SQLite version (3.40.0) and year (2022) for testing and development. This enhances consistency across development environments and aids in catching SQLite-specific issues early in the CI process.
  • Loading branch information
eliasjpr committed Aug 12, 2024
1 parent 1e51ca4 commit 1d96415
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/crystal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ jobs:
- 5432:5432
steps:
- uses: actions/checkout@v2
- uses: actions/setup-sqlite@v1
with:
sqlite-version: 3.40.0
sqlite-year: 2022
- name: Install dependencies
run: shards install
- name: Check code style
Expand Down

0 comments on commit 1d96415

Please sign in to comment.