Skip to content

test source

test source #61

Workflow file for this run

name: Ruby Checks
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '3.3'
- '3.4'
- '4.0'
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install build dependencies
run: |
sudo apt-get update -qq
sudo apt-get install -yq --no-install-recommends build-essential autoconf automake libtool gettext autopoint pkg-config
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run the default task
run: bundle exec rake