Skip to content

Add libyaml

Add libyaml #36

Workflow file for this run

name: CI
on:
push:
branches: [ wip-test-github-actions-on-self-hosted-runners ]
pull_request:
branches: [ wip-test-github-actions-on-self-hosted-runners ]
jobs:
test:
runs-on: gha-runner-scale-set
strategy:
matrix:
ruby-version:
- 3.2
- 3.1
- "3.0"
steps:
- name: Prepare
run: |
sudo mkdir -p /opt/hostedtoolcache
sudo chown runner -R /opt/hostedtoolcache
apt update
apt install -y libyaml-dev
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake