Load avaiable resource types with fhir-schema #152
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: Aidbox Python SDK | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - python-version: "3.9" | |
| - python-version: "3.10" | |
| - python-version: "3.11" | |
| - python-version: "3.12" | |
| env: | |
| PYTHON: ${{ matrix.python-version }} | |
| AIDBOX_LICENSE: ${{ secrets.AIDBOX_LICENSE}} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Upgrade pip | |
| run: | | |
| python -m pip install --upgrade pip | |
| - name: Run tests | |
| run: ./run_test.sh | |
| shell: bash | |
| - name: Show logs | |
| if: ${{ failure() }} | |
| run: docker compose logs | |
| # - name: Upload coverage to Codecov | |
| # uses: codecov/codecov-action@v3 | |
| # with: | |
| # token: ${{ secrets.CODECOV_TOKEN }} | |
| # env_vars: PYTHON | |
| # fail_ci_if_error: true | |
| # files: ./coverage.xml | |
| # flags: unittests | |
| # name: codecov-umbrella | |
| # verbose: true |