Update log handling in Command class for improved clarity and default… #135
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: pytest-iris | |
on: | |
push: | |
paths-ignore: | |
- 'README.md' | |
- '.github/**' | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
image: | |
- intersystemsdc/iris-community:latest | |
- intersystemsdc/iris-community:preview | |
runs-on: ubuntu-latest | |
env: | |
IMAGE: ${{ matrix.image }} | |
steps: | |
- uses: actions/checkout@v3 | |
- run: docker pull $IMAGE | |
- name: Run Tests | |
run: | | |
docker build --build-arg BASE=$IMAGE -t pytest-iris -f dockerfile-ci . | |
docker run -i --rm pytest-iris | |