Migrate continuous testing to GitHub Actions (#147)

* crystal tool format

* Migrate continuous testing to GitHub Actions
This commit is contained in:
Oleh Prypin 2021-06-09 01:52:00 +02:00 committed by GitHub
parent 0415deebbb
commit 52bd5b0a86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 8 deletions

33
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,33 @@
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'

View File

@ -1,7 +0,0 @@
language: crystal
crystal:
- latest
- nightly
script:
- crystal spec
- crystal tool format --check

View File

@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.org/crystal-lang/crystal-db.svg?branch=master)](https://travis-ci.org/crystal-lang/crystal-db)
[![Build Status](https://github.com/crystal-lang/crystal-db/workflows/CI/badge.svg)](https://github.com/crystal-lang/crystal-db/actions?query=workflow%3ACI+event%3Apush+branch%3Amaster)
# crystal-db