Create crystal.yml

This commit is contained in:
Glenn Y. Rolland 2021-01-01 20:13:43 +01:00 committed by GitHub
parent 637861a39e
commit b41bed8421
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

23
.github/workflows/crystal.yml vendored Normal file
View file

@ -0,0 +1,23 @@
name: Crystal CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
container:
image: crystallang/crystal
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: shards install
- name: Run build
run: make build
#- name: Run tests
# run: crystal spec