Add basic metadata options to CLI #762
Workflow file for this run
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: Run integration tests against iRODS | |
on: | |
push: | |
branches: | |
- develop | |
paths-ignore: | |
- 'docs/**' | |
- 'tutorials/**' | |
- 'README.md' | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- 'tutorials/**' | |
- 'README.md' | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
if: | | |
${{ ! contains(github.event.head_commit.message, '#nointegrationtests') && | |
( github.event_name == 'push' || | |
github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name | |
) | |
}} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
sudo apt install -y docker-compose | |
- run: docker-compose build | |
- name: Run tests using docker-compose | |
run: docker-compose up --no-build --exit-code-from irods-client |