Create crystal.yml
This commit is contained in:
parent
c5f0aeea22
commit
b0a53bb6a2
1 changed files with 22 additions and 0 deletions
22
.github/workflows/crystal.yml
vendored
Normal file
22
.github/workflows/crystal.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
name: Crystal CI
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
container:
|
||||
image: crystallang/crystal
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install dependencies
|
||||
run: shards install
|
||||
- name: Build
|
||||
run: make test
|
||||
- name: Tests
|
||||
run: make test
|
||||
- name: install
|
||||
run: make install
|
Loading…
Reference in a new issue