fix: preserve immutable evidence bytes cross-platform #7
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: ci | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 | |
| - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6 | |
| with: | |
| python-version: "3.12" | |
| cache: pip | |
| - run: python -m pip install -e ".[dev]" | |
| - run: python -m ruff check . | |
| - run: python -m mypy | |
| - run: python -m pytest | |
| - run: python -m cas_reference_product.evidence | |
| - run: docker build --platform linux/amd64 -t cas-reference-product:ci . |