Skip to content

Update arclight to v1.1.0 and re-run the generator #339

Update arclight to v1.1.0 and re-run the generator

Update arclight to v1.1.0 and re-run the generator #339

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
- name: Install libxml2
run: |
sudo apt-get update
sudo apt-get install libxml2-utils
- name: Lint EAD
run: find data/ead -name '*.xml' | xargs xmllint --noout --schema data/xsd/ead.xsd || (exit 0)
- uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-202103-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-202103
- name: Bundle install
run: |
bundle config path vendor/bundle
bundle install
- name: Run tests
run: bundle exec rake