Skip to content

Bump actions/checkout from 5 to 6 #17

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #17

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches: [master]
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
crystal: [latest, nightly]
runs-on: ${{ matrix.os }}
steps:
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
with:
crystal: ${{ matrix.crystal }}
- name: Download source
uses: actions/checkout@v6
- name: Install dependencies
run: shards install
- name: Run specs
run: crystal spec
- name: Check formatting
run: crystal tool format --check
if: success() || failure()
- name: Run ameba linter
run: bin/ameba
if: success() || failure()