mirror of
https://gitea.invidious.io/iv-org/shard-crystal-db.git
synced 2024-08-15 00:53:32 +00:00
Update Github Actions config (#152)
Add explicit 1.0.0 to version matrix. Formatter check should only run on latest.
This commit is contained in:
parent
52bd5b0a86
commit
3a53a69f83
1 changed files with 2 additions and 2 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -13,7 +13,7 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest]
|
os: [ubuntu-latest, macos-latest]
|
||||||
crystal: [latest, nightly]
|
crystal: [1.0.0, latest, nightly]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -30,4 +30,4 @@ jobs:
|
||||||
|
|
||||||
- name: Check formatting
|
- name: Check formatting
|
||||||
run: crystal tool format; git diff --exit-code
|
run: crystal tool format; git diff --exit-code
|
||||||
if: matrix.crystal != 'nightly' && matrix.os == 'ubuntu-latest'
|
if: matrix.crystal == 'latest' && matrix.os == 'ubuntu-latest'
|
||||||
|
|
Loading…
Reference in a new issue