Skip to content

Bump step-security/harden-runner from 2.11.1 to 2.12.0 #65

Bump step-security/harden-runner from 2.11.1 to 2.12.0

Bump step-security/harden-runner from 2.11.1 to 2.12.0 #65

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
strategy:
matrix:
ruby: [ 2.7, 2.6, 2.5, head ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
exclude:
- { os: macos-latest, ruby: '2.5' }
include:
- { os: macos-13, ruby: '2.5' }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run test
run: rake compile test