Skip to content

Bump actions/checkout from 6.0.2 to 6.0.3 (#768) #1681

Bump actions/checkout from 6.0.2 to 6.0.3 (#768)

Bump actions/checkout from 6.0.2 to 6.0.3 (#768) #1681

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- main
schedule:
# Weekly.
- cron: '0 0 * * 0'
jobs:
test-generator:
name: Test Generator
runs-on: ubuntu-24.04
container:
image: crystallang/crystal:1.19.1
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
- name: Run generator tests
run: crystal spec test-generator
test-generator-templates:
name: Check Generator Templates
runs-on: ubuntu-24.04
container:
image: crystallang/crystal:1.19.1
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
- name: Check generator templates tests
run: ./bin/test_specs
template:
name: Check file formatting
runs-on: ubuntu-24.04
container:
image: crystallang/crystal:1.19.1
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
- name: Run file formatting
run: crystal ./bin/check-format.cr
exercises:
name: Check exercises Crystal ${{ matrix.crystal }}
runs-on: ubuntu-24.04
strategy:
# Allows running the job multiple times with different configurations
matrix:
crystal: ["1.15", "1.16", "1.17", "1.18", "1.19.1"]
container:
image: crystallang/crystal:${{ matrix.crystal }}
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
- name: Install jq
run: apt-get update && apt-get install -y jq
- name: Run tests
run: ./bin/test-exercises.sh
exercises-windows:
name: Check exercises Crystal on Windows
runs-on: windows-2025
steps:
- name: Install Crystal
uses: crystal-lang/install-crystal@d8ef131ecec0352ce0e39b81b0a6d95def58fe2f
with:
crystal: "1.19.1"
- name: 'Setup jq'
run: choco install jq
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
- name: Run tests
run: ./bin/test-exercises.ps1