Skip to content

Commit

Permalink
(RST-5642) Experiment with github actions - adding rvm
Browse files Browse the repository at this point in the history
  • Loading branch information
garytaylor committed Dec 18, 2023
1 parent 1d3cb25 commit d855e7a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,15 @@ jobs:
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- name: Setup dependencies
run: |
sudo apt-get update
sudo apt-get install -y gnupg2 curl
gpg2 --keyserver hkp://keyserver.ubuntu.com --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB
curl -sSL https://rvm.io/mpapis.asc | gpg --import -
curl -sSL https://get.rvm.io | bash -s stable
source ~/.rvm/scripts/rvm
rvm install 3.2.2
gem install bundler
bundle install
- run: echo "🍏 This job's status is ${{ job.status }}."

0 comments on commit d855e7a

Please sign in to comment.