generated from grepsedawk/sharded.cr
-
Notifications
You must be signed in to change notification settings - Fork 8
87 lines (71 loc) · 2.06 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: Continuous Integration
on:
push:
branches:
- main
pull_request:
jobs:
CheckFormat:
if: github.repository != 'grepsedawk/sharded.cr'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- uses: oprypin/install-crystal@v1
with:
crystal: latest
- name: Format
run: crystal tool format --check
- name: Set up Crystal cache
uses: actions/cache@v2.1.7
id: crystal-cache
with:
path: |
~/.cache/crystal
bin/ameba
lib
key: ${{ runner.os }}-crystal-${{ hashFiles('**/shard.yml') }}
restore-keys: |
${{ runner.os }}-crystal-
- name: Install shards
if: steps.crystal-cache.outputs.cache-hit != 'true'
run: shards check || shards install --ignore-crystal-version
- name: Run ameba linter
run: ./bin/ameba
RunSpecs:
if: github.repository != 'grepsedawk/sharded.cr'
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
crystal_version:
- 1.8.2
- latest
experimental:
- false
steps:
- uses: actions/checkout@v2.4.0
- run: |
cd spec
docker-compose up -d
sleep 30 # TODO: Wait for the container to be ready
- uses: oprypin/install-crystal@v1
with:
crystal: ${{ matrix.crystal_version }}
- name: Set up Crystal cache
uses: actions/cache@v2.1.7
id: crystal-cache
with:
path: |
~/.cache/crystal
bin/ameba
lib
key: ${{ runner.os }}-crystal-${{ matrix.crystal_version }}-${{ hashFiles('**/shard.yml') }}
restore-keys: |
${{ runner.os }}-crystal-
- name: Install shards
if: steps.crystal-cache.outputs.cache-hit != 'true'
run: shards check || shards install --ignore-crystal-version
- name: Create .env
run: touch .env
- name: Run tests
run: crystal spec || crystal spec || crystal spec