Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
oprypin committed Jan 7, 2021
1 parent dc8f0c3 commit a68b9d5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on:
push:
pull_request:
branches: [master]
schedule:
- cron: '0 6 * * 6'

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install Crystal
uses: oprypin/install-crystal@v1
- name: Download source
uses: actions/checkout@v2
- name: Install dependencies
run: shards install
- name: Build
run: make
- name: Check formatting
run: crystal tool format --check

0 comments on commit a68b9d5

Please sign in to comment.