Files
starter-workflows/ci/crystal.yml
T

23 lines
356 B
YAML
Raw Normal View History

2020-03-17 11:17:19 +00:00
name: Crystal CI
on:
push:
2020-07-14 18:11:40 +00:00
branches: [ $default-branch ]
2020-03-17 11:17:19 +00:00
pull_request:
2020-07-14 18:11:40 +00:00
branches: [ $default-branch ]
2020-03-17 11:17:19 +00:00
jobs:
build:
runs-on: ubuntu-latest
container:
image: crystallang/crystal
steps:
2022-03-28 17:11:12 +00:00
- uses: actions/checkout@v3
2020-03-17 11:17:19 +00:00
- name: Install dependencies
run: shards install
- name: Run tests
run: crystal spec