This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
Update ruby/setup-ruby action to v1.179.1 #139
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: Inspec / Test | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
aws: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup Ruby | |
uses: ruby/[email protected] | |
with: | |
# Not needed with a .ruby-version file | |
ruby-version: '3.0' | |
# runs 'bundle install' and caches installed gems automatically | |
bundler-cache: true | |
- name: Setup dependencies | |
run: bundle install |