Skip to content

1.10 not 1.1

1.10 not 1.1 #4

Workflow file for this run

on:
push:
pull_request:
branches: [master]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
crystal: ["1.9", "1.10", "1.11", "1.12", "1.13"]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Use Crystal ${{ matrix.crystal }}
uses: crystal-lang/install-crystal@v1
with:
crystal: ${{ matrix.crystal }}
- name: Install Shards
run: shards install
- name: Install Python reqs
run: make install_deps
- name: Generate test data
run: make generate_testdata
- name: Run tests
run: crystal spec