Skip to content

Commit cd7c988

Browse files
authored
Add github action
1 parent 6355e00 commit cd7c988

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/crystal.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Crystal CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
container:
11+
image: crystallang/crystal
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Install dependencies
16+
run: shards install
17+
- name: Run tests
18+
run: make test

0 commit comments

Comments
 (0)