This repository has been archived by the owner on Aug 2, 2024. It is now read-only.
Travis -> GHA #3
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
# These tests were added to Aptible's fork to migrate off of travis. | |
# However, upstream has already moved to GHA, so we should update our fork | |
# and prefer their test suite | |
name: test | |
on: | |
pull_request: | |
branches: | |
- aptible | |
push: | |
branches: | |
- aptible | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: | |
- 3.2 | |
- 2.7 | |
- 2.6 | |
gemfile: | |
- openssl_2_1 | |
- openssl_2_0 | |
- openssl_default | |
env: | |
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- run: bundle exec rake |