use IMDSv2 to retrieve ec2 metadata #20
Workflow file for this run
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
name: Run test | |
on: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-version: | |
- 1.9.3 | |
- 2.0.0 | |
- 2.1.9 | |
- 2.3.8 | |
- 2.4.10 | |
- 2.5.9 | |
- 2.6.10 | |
- 2.7.8 | |
- 3.0.6 | |
- 3.1.4 | |
- 3.2.2 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby ${{ matrix.ruby-version }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
- name: Install dependencies | |
run: bundle install | |
- name: Run tests | |
run: bundle exec rake | |
# Bundler with Ruby 2.2.10 doesn't work for the latest Ubuntu. | |
# See also: https://github.com/ruby/setup-ruby/issues/496#issuecomment-1625000309 | |
test-ruby-2-2-10: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-version: | |
- 2.2.10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby ${{ matrix.ruby-version }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
- name: Install dependencies | |
run: bundle install | |
- name: Run tests | |
run: bundle exec rake |