Enhance logging descriptions in request methods to include component … #7
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: IRIS preview | |
| on: | |
| # schedule: | |
| # - cron: "17 3 * * *" | |
| push: | |
| branches: [master] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| env: | |
| IMAGE: intersystemsdc/iris-community:preview | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: docker pull "$IMAGE" | |
| - run: | | |
| docker build --build-arg BASE="$IMAGE" \ | |
| --build-arg IRISUSERNAME=${{ secrets.IRIS_USERNAME || 'SuperUser' }} \ | |
| --build-arg IRISPASSWORD=${{ secrets.IRIS_PASSWORD || 'SYS' }} \ | |
| -t pytest-iris-preview -f dockerfile-ci . | |
| docker run -i --rm pytest-iris-preview |