Skip to content

Add build-windows-exe.yml workflow #53

Add build-windows-exe.yml workflow

Add build-windows-exe.yml workflow #53

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
ruby:
- '3.2.9'
- '3.3.10'
- '3.4.7'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install dependencies
if: matrix.os == 'windows-latest'
run: bundle install
- name: Run the default task
run: bundle exec rake