Skip to content

Bump actions/checkout from 4.2.0 to 4.2.2 #1421

Bump actions/checkout from 4.2.0 to 4.2.2

Bump actions/checkout from 4.2.0 to 4.2.2 #1421

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-22.04
container:
image: crystallang/crystal
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Run generator tests
run: crystal spec test-generator
test-generator-templates:
name: Check Generator Templates
runs-on: ubuntu-22.04
container:
image: crystallang/crystal
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Check generator templates tests
run: ./bin/test_specs
template:
name: Check file formatting
runs-on: ubuntu-22.04
container:
image: crystallang/crystal
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Run file formatting
run: crystal ./bin/check-format.cr
exercises:
name: Check exercises Crystal ${{ matrix.crystal }}
runs-on: ubuntu-22.04
strategy:
# Allows running the job multiple times with different configurations
matrix:
crystal: ["1.10", "1.11", "1.12", "1.13", "1.14.0"]
container:
image: crystallang/crystal:${{ matrix.crystal }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- 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-2022
steps:
- name: Install Crystal
uses: crystal-lang/install-crystal@cdf26dcd488490c9939e9d4d62cab169c9e4f20d
with:
crystal: "1.14.0"
- name: 'Setup jq'
run: choco install jq
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Run tests
run: ./bin/test-exercises.ps1