From 1d96415b34290870095a7526c80c71bd0ae916ef Mon Sep 17 00:00:00 2001 From: Elias Perez Date: Mon, 12 Aug 2024 16:16:18 -0400 Subject: [PATCH] Add SQLite setup to GitHub Actions workflow 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. --- .github/workflows/crystal.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/crystal.yml b/.github/workflows/crystal.yml index ebbc8b9..0365fe9 100644 --- a/.github/workflows/crystal.yml +++ b/.github/workflows/crystal.yml @@ -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