Skip to content

Commit

Permalink
update CI actions and test on more ruby versions & os
Browse files Browse the repository at this point in the history
  • Loading branch information
noraj committed Apr 11, 2024
1 parent 033b017 commit 4ea8cba
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
dist_linux:
runs-on: ubuntu-latest
container:
image: crystallang/crystal:1.7-alpine
image: crystallang/crystal:1.12-alpine
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Update Libs
run: apk add --update --upgrade --no-cache --force-overwrite libxml2-dev yaml-dev
- name: Install dependencies
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ jobs:
strategy:
fail-fast: false
matrix:
crystal: [1.7]
runs-on: ubuntu-latest
os: [ubuntu-latest, macos-latest]
crystal: [1.7, 1.8, 1.9, 1.10, 1.11, 1.12]
runs-on: ${{ matrix.os }}
steps:
- name: Download source
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
with:
Expand Down

0 comments on commit 4ea8cba

Please sign in to comment.