pushokku/.github/workflows/crystal.yml

23 lines
350 B
YAML
Raw Normal View History

2020-03-03 18:16:39 +00:00
---
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