-
Notifications
You must be signed in to change notification settings - Fork 2
47 lines (43 loc) · 1.09 KB
/
continuous_integration.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: Continuous Integration
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
linux:
name: Continuous Integration - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
container:
image: crystallang/crystal
steps:
- name: Actions - Use CheckOut@V2
uses: actions/checkout@v2
- name: Install - Dns.cr Dependencies
run: shards install
- name: Test - Crystal Spec
run: crystal spec --error-trace --stats --progress --no-debug
macOS:
name: Continuous Integration - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macOS-latest
steps:
- name: Actions - Use CheckOut@V2
uses: actions/checkout@v2
- name: Update - Brew Package Management
run: brew update
- name: Install - Crystal Language
run: brew install crystal
- name: Install - Dns.cr Dependencies
run: shards install
- name: Test - Crystal Spec
run: crystal spec --error-trace --stats --progress --no-debug