Skip to content

Extract pin hash

Extract pin hash #103

Workflow file for this run

name: ubuntu
on:
pull_request:
push:
branches:
- master
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ 3.1, 3.2, 3.3, 3.4, head ]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Setup ruby
uses: ruby/setup-ruby@e65c17d16e57e481586a6a5a0282698790062f92 # v1.300.0
with:
ruby-version: ${{ matrix.ruby }}
- name: Install Dependencies
run: |
bundle install
- name: Run Test
run: bundle exec rake spec