Skip to content

Trying to debug tests on windows #5

Trying to debug tests on windows

Trying to debug tests on windows #5

Workflow file for this run

name: CI
on:
push:
schedule:
- cron: 0 0 * * 1 # At 00:00 on Monday
jobs:
# lint:
# name: Lint
# runs-on: ubuntu-latest
# steps:
# - name: Download source
# uses: actions/checkout@v4
# - name: Install Crystal
# uses: crystal-lang/install-crystal@v1
# - name: Cache Shards
# uses: actions/cache@v3
# with:
# path: |
# ./lib
# ./bin
# key: shards-${{ hashFiles('shard.yml') }}
# - name: Install shards
# run: shards install
# - name: Check code format
# run: crystal tool format --check
# - name: Lint with ameba
# run: bin/ameba
test:
name: Test
strategy:
fail-fast: false
matrix:
include:
# - {os: ubuntu-latest}
# - {os: macos-latest}
- {os: windows-latest}
runs-on: ${{matrix.os}}
steps:
- name: Download source
uses: actions/checkout@v4
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
with:
shards: false
- name: Run tests
run: crystal spec