Refactor dataclass_from_dict to improve field processing and error ha… #156
Workflow file for this run
This file contains hidden or 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 | |