forked from neovintage/kemal-session-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (44 loc) · 1.16 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Crystal CI
on:
push:
pull_request:
schedule:
- cron: '0 0 * * *'
jobs:
check_format:
runs-on: ubuntu-latest
steps:
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
- name: Check out repository code
uses: actions/checkout@v3
- name: Install dependencies
run: shards install
- name: Check format
run: crystal tool format --check
test:
strategy:
fail-fast: false
matrix:
include:
- {os: ubuntu-latest, crystal: latest}
- {os: ubuntu-latest, crystal: nightly}
- {os: macos-latest}
runs-on: ${{ matrix.os }}
steps:
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
with:
crystal: ${{ matrix.crystal }}
- name: Redis on ${{ runner.os }}
uses: shogo82148/actions-setup-redis@v1
id: main_redis
with:
redis-version: 6.2
- run: redis-cli info | grep version
- name: Check out repository code
uses: actions/checkout@v3
- name: Install dependencies
run: shards install
- name: Run tests
run: crystal spec