-
Notifications
You must be signed in to change notification settings - Fork 7
40 lines (38 loc) · 931 Bytes
/
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
name: CI
on:
push:
workflow_dispatch:
schedule:
- cron: "0 6 * * 1"
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
crystal:
- latest
- nightly
- 1.0.0
runs-on: ${{ matrix.os }}
container: crystallang/crystal:${{ matrix.crystal }}-alpine
services:
# Label used to access the service container
sshtest:
image: placeos/ssh-test:latest
env:
ROOT_PASS: somepassword
steps:
- uses: actions/checkout@v2
- name: Install LibSSH2
run: apk add --no-cache libssh2 libssh2-dev libssh2-static
- name: Install dependencies
run: shards install --ignore-crystal-version
- name: Lint
run: ./bin/ameba
- name: Format
run: crystal tool format --check
- name: Run tests
run: crystal spec -v --error-trace
env:
SPEC_SSH_HOST: sshtest