Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Update mtex2MML to 43f9e36f4b01013100f86073ac70d1855b3cc4cb #20

Update mtex2MML to 43f9e36f4b01013100f86073ac70d1855b3cc4cb

Update mtex2MML to 43f9e36f4b01013100f86073ac70d1855b3cc4cb #20

Workflow file for this run

name: CI
on:
pull_request:
permissions:
contents: read
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
ruby-version: [3.1.0]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Linux packages
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
sudo apt-get update -qq
script/install_linux_deps
- name: Install MacOS packages
if: ${{ matrix.os == 'macos-latest' }}
run: script/install_macos_deps
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Install dependencies
run: bundle install
- name: Run tests
run: script/cibuild