Skip to content

bump version 0.3.0

bump version 0.3.0 #27

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
spec:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
crystal: [1.9.0, 1.8.0, latest, nightly]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Crystal
uses: oprypin/install-crystal@v1
with:
crystal: ${{ matrix.crystal }}
- name: Install shards
run: shards install
- name: Run tests
run: crystal spec --error-trace
# - name: Check formatting
# run: crystal tool format --check