Skip to content

Implement Proc#source_location #4253

Implement Proc#source_location

Implement Proc#source_location #4253

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
env:
DOCKER_FLAGS: ""
CI: 1
jobs:
linux:
runs-on: ubuntu-22.04
strategy:
matrix:
ruby_version:
- ruby3.0
- ruby3.1
- ruby3.2
compiler:
- gcc
- clang
steps:
- uses: actions/checkout@v1
- name: checkout submodules
run: git submodule update --init --recursive
- name: run tests
run: rake docker_test_${{ matrix.compiler }} RUBY=${{ matrix.ruby_version }}
macos:
runs-on: macos-12
steps:
- uses: actions/checkout@v1
- name: checkout submodules
run: git submodule update --init --recursive
- name: install ruby
run: brew install ruby autoconf automake libtool pkg-config
- name: install openssl
run: brew install openssl
- name: test with clang on macOS
env:
PKG_CONFIG_PATH: /usr/local/opt/openssl@3/lib/pkgconfig:/opt/homebrew/opt/openssl@3/lib/pkgconfig
run: rake test