Skip to content

Commit

Permalink
Hello Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
y2k2mt committed Dec 15, 2020
1 parent 18d5817 commit e058412
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/crystal.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Crystal CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

container:
image: crystallang/crystal

steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: shards install
- name: Code formatting
run: crystal tool format --check
- name: Code inspection with ameba
run: bin/ameba src
- name: Run specs
run: crystal spec -v

0 comments on commit e058412

Please sign in to comment.