Skip to content

Sync the anagram exercise's docs with the latest data. (#642) #1245

Sync the anagram exercise's docs with the latest data. (#642)

Sync the anagram exercise's docs with the latest data. (#642) #1245

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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
- name: Run generator tests
run: crystal spec test-generator/spec/*
test-generator-templates:
name: Check Generator Templates
runs-on: ubuntu-22.04
container:
image: crystallang/crystal
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
- 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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
- 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.8", "1.9", "1.10", "1.11", "1.12.1"]
container:
image: crystallang/crystal:${{ matrix.crystal }}
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
- 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.12.1"
- name: 'Setup jq'
run: choco install jq
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
- name: Run tests
run: ./bin/test-exercises.ps1