Skip to content

Commit 9502ba1

Browse files
Move runs-on
1 parent dbb78b1 commit 9502ba1

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ on:
1010

1111
jobs:
1212
specs:
13+
runs-on: ${{ matrix.os }}
14+
1315
strategy:
1416
fail-fast: false
1517
matrix:
@@ -20,7 +22,6 @@ jobs:
2022
- { os: macos-latest }
2123
# - { os: windows-latest }
2224

23-
runs-on: ${{ matrix.os }}
2425
steps:
2526
- name: Checkout code
2627
uses: actions/checkout@v4
@@ -53,6 +54,8 @@ jobs:
5354
run: crystal spec -p -s
5455

5556
lint:
57+
runs-on: ${{ matrix.os }}
58+
5659
strategy:
5760
fail-fast: false
5861
matrix:
@@ -61,9 +64,8 @@ jobs:
6164
- { os: ubuntu-latest, crystal: latest }
6265
- { os: ubuntu-latest, crystal: nightly }
6366
- { os: macos-latest }
64-
- { os: windows-latest }
67+
# - { os: windows-latest }
6568

66-
runs-on: ${{ matrix.os }}
6769
steps:
6870
- name: Checkout code
6971
uses: actions/checkout@v4

0 commit comments

Comments
 (0)