shard-crystal-db/.github/workflows/ci.yml
Oleh Prypin 52bd5b0a86
Migrate continuous testing to GitHub Actions (#147)
* crystal tool format

* Migrate continuous testing to GitHub Actions
2021-06-08 20:52:00 -03:00

33 lines
704 B
YAML

name: CI
on:
push:
pull_request:
branches: [master]
schedule:
- cron: '0 6 * * 1' # Every monday 6 AM
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
crystal: [latest, nightly]
runs-on: ${{ matrix.os }}
steps:
- name: Install Crystal
uses: oprypin/install-crystal@v1
with:
crystal: ${{ matrix.crystal }}
- name: Download source
uses: actions/checkout@v2
- name: Run specs
run: crystal spec
- name: Check formatting
run: crystal tool format; git diff --exit-code
if: matrix.crystal != 'nightly' && matrix.os == 'ubuntu-latest'