Installation Tests #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow is intended to catch issues with installation issues after a release | |
# If the jobs fail that means users will not be able to install the latest version of gems | |
# You may have to update and release gems that fail to install | |
name: Installation Tests | |
on: | |
workflow_dispatch: | |
schedule: | |
# Everyday at 2 PM UTC | |
- cron: "0 14 * * *" | |
jobs: | |
installation-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-version: | |
- 3.3 | |
- 3.2 | |
- 3.1 | |
- 3.0 | |
name: ${{ matrix.ruby-version }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1.173.0 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
- name: "Install Latest Gem Versions on ${{ matrix.ruby-version }}" | |
working-directory: releases | |
run: ./run.sh |