Skip to content

bump 0.4.1

bump 0.4.1 #10

Workflow file for this run

name: Linux CI
on:
push:
branches:
- "master"
pull_request:
branches: "*"
jobs:
specs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
crystal: [ '1.0.0', 'latest', 'nightly' ]
name: Crystal ${{ matrix.crystal }} tests
steps:
- uses: actions/checkout@master
- uses: oprypin/install-crystal@v1
with:
crystal: ${{ matrix.crystal }}
- name: Install dependencies
run: shards install
- name: Run tests
run: crystal spec --error-on-warnings --error-trace
- name: Run code format check
run: |
if ! crystal tool format --check; then
crystal tool format
git diff
exit 1
fi