feat: bump to Crystal 1.14.0 #40
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
test_linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
- name: Setup Crystal | |
uses: crystal-lang/install-crystal@v1 | |
with: | |
crystal: 1.14.0 | |
- name: Install dependencies | |
run: make deps | |
- name: Run tests | |
run: make spec |