Skip to content

Bump to Ruby 3.4.4

Bump to Ruby 3.4.4 #17

Workflow file for this run

name: Lint
on:
# Run this workflow manually from the Actions tab.
workflow_dispatch:
# Run when pushing to `main`.
push:
branches:
- main
# Run when making a PR against `main`.
pull_request:
branches:
- main
# Set permissions of the GITHUB_TOKEN to allow pushing.
permissions:
contents: write
defaults:
run:
shell: bash
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: |
bundle install
bun install
- name: Run linters
run: |
make lint