Update lds_media_types.json #109
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
jobs: | |
quality-assurance: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Omeka S | |
uses: actions/checkout@v3 | |
with: | |
name: omeka/omeka-s | |
- name: Install Composer dependencies for Omeka S | |
run: composer install --prefer-dist | |
- name: Install the LinkedDataSets module | |
uses: actions/checkout@v3 | |
with: | |
path: ./modules/LinkedDataSets | |
- name: Install Composer dependencies for LinkedDataSets | |
working-directory: ./modules/LinkedDataSets | |
run: composer install --prefer-dist | |
- name: Run Quality checks | |
working-directory: ./modules/LinkedDataSets | |
run: composer test |