Skip to content

update system test for eyaml parsing and validation #37

update system test for eyaml parsing and validation

update system test for eyaml parsing and validation #37

Workflow file for this run

---
name: ci
on:
push:
branches: [master]
paths:
- 'lib/**'
- 'spec/**/*_spec.rb'
pull_request:
branches: [master]
paths:
- 'lib/**'
- 'spec/**/*_spec.rb'
jobs:
test:
strategy:
matrix:
ruby_version:
- '2.6'
- '3.0'
- '3.2'
runs-on: ubuntu-22.04
container: ruby:${{ matrix.ruby_version }}-slim
steps:
- name: checkout
uses: actions/checkout@v3
- name: install some pre-requisite packages
run: apt-get update && apt-get install -y cmake pkg-config
- name: bundler install
run: bundle install --retry=3
- name: run tests
run: bundle exec rake unit system