Bump ruby/setup-ruby from 1.196.0 to 1.202.0 in the github-actions group across 1 directory #115
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: build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_call: | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: build | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@a2bbe5b1b236842c1cb7dd11e8e3b51e0a616acc # pin@v1.202.0 | |
with: | |
bundler-cache: true | |
- name: bootstrap | |
run: script/bootstrap | |
- name: build | |
run: | | |
GEM_NAME=$(ls | grep gemspec | cut -d. -f1) | |
echo "Attempting to build gem $GEM_NAME..." | |
gem build $GEM_NAME | |
if [ $? -eq 0 ]; then | |
echo "Gem built successfully!" | |
else | |
echo "Gem build failed!" | |
exit 1 | |
fi |