Skip to content

Commit

Permalink
feat: clean up windows ci (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdwagner authored Apr 9, 2023
1 parent dd9b6dd commit d4e8fc7
Showing 1 changed file with 13 additions and 23 deletions.
36 changes: 13 additions & 23 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,13 @@ jobs:
check_format:
strategy:
fail-fast: false
matrix:
crystal_version:
- latest
experimental:
- false
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
continue-on-error: false
steps:
- uses: actions/checkout@v2
- uses: crystal-lang/install-crystal@v1
with:
crystal: ${{matrix.crystal_version}}
- name: Download source
uses: actions/checkout@v3
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
- name: Install shards
run: shards install
- name: Format
Expand All @@ -32,24 +27,19 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
crystal_version:
- 1.6.2
- latest
experimental:
- false
os: [ubuntu-latest, windows-latest]
crystal_version: [latest]
include:
- os: windows-latest
crystal_version: latest
experimental: true
- os: ubuntu-latest
crystal_version: 1.6.2
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
continue-on-error: false
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: crystal-lang/install-crystal@v1
with:
crystal: ${{matrix.crystal_version}}
crystal: ${{ matrix.crystal_version }}
- name: Install dependencies
run: shards install
run: shards install --skip-postinstall --skip-executables
- name: Run tests
run: crystal spec

0 comments on commit d4e8fc7

Please sign in to comment.