Skip to content

added SQLite for github actions test purpose #10

added SQLite for github actions test purpose

added SQLite for github actions test purpose #10

Workflow file for this run

name: Crystal Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install SQLite deps
run: |
sudo apt-get update
sudo apt-get install -y libsqlite3-dev
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
- name: Install dependencies
run: shards install
- name: Run tests
run: crystal spec