Skip to content

Commit

Permalink
Run specs against 0.36.0, 1.0, and 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
richardboehme committed Oct 22, 2022
1 parent a22600d commit e2d95c2
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@ name: Specs

on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]
workflow_dispatch:

jobs:
run_specs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
crystal: [ 0.36.1, 1.0.0, 1.1.1, 1.2.2, 1.3.0 ]
os: [ubuntu-latest]
crystal: [0.36.1, 1.0.0, 1.6.1]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: crystal-lang/install-crystal@v1
with:
crystal: ${{ matrix.crystal }}
- name: Install dependencies
run: shards install --ignore-crystal-version
- name: Run tests
run: crystal spec
- uses: actions/checkout@v2
- uses: crystal-lang/install-crystal@v1
with:
crystal: ${{ matrix.crystal }}
- name: Install dependencies
run: shards install --ignore-crystal-version
- name: Run tests
run: crystal spec

0 comments on commit e2d95c2

Please sign in to comment.