From c8002f65ecdcea8e1f3b8922e6163ce72b4e08f3 Mon Sep 17 00:00:00 2001 From: Ragmaanir Date: Mon, 3 Jul 2023 22:44:43 +0200 Subject: [PATCH] Github CI: Disable nightly since it breaks often --- .github/workflows/crystal.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/crystal.yml b/.github/workflows/crystal.yml index ae4b7f3..f02ac5f 100644 --- a/.github/workflows/crystal.yml +++ b/.github/workflows/crystal.yml @@ -12,19 +12,14 @@ jobs: strategy: fail-fast: false matrix: - # os: [ubuntu-latest, macos-latest] - include: - - os: ubuntu-latest - - os: ubuntu-latest - crystal: nightly - - os: macos-latest - # - os: windows-latest + os: [ubuntu-latest, macos-latest] # crystal: [latest, nightly] + crystal: [latest] # nightly breaks to often runs-on: ${{ matrix.os }} steps: - name: Download source - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Crystal uses: crystal-lang/install-crystal@v1 @@ -32,7 +27,7 @@ jobs: crystal: ${{ matrix.crystal }} - name: Install shards - run: shards update + run: shards install - name: Run tests run: crystal spec