From 3a53a69f83eafa6a47c03527c4dc373d2792b13c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20M=C3=BCller?= Date: Mon, 21 Jun 2021 16:53:14 +0200 Subject: [PATCH] Update Github Actions config (#152) Add explicit 1.0.0 to version matrix. Formatter check should only run on latest. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b1fa14c..5ba3fe0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] - crystal: [latest, nightly] + crystal: [1.0.0, latest, nightly] runs-on: ${{ matrix.os }} steps: @@ -30,4 +30,4 @@ jobs: - name: Check formatting run: crystal tool format; git diff --exit-code - if: matrix.crystal != 'nightly' && matrix.os == 'ubuntu-latest' + if: matrix.crystal == 'latest' && matrix.os == 'ubuntu-latest'