edge_model_serving CI on branch >> 137/merge << #314
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 edge_model_serving | |
| run-name: edge_model_serving CI on branch >> ${{ github.ref_name }} << | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| paths: | |
| - "edge/model_serving/**" | |
| jobs: | |
| lint_and_test_on_edge_model_serving: | |
| name: Run Python linter and tests (unit > integration > functional) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11"] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: make install | |
| working-directory: ./edge/model_serving/tflite_serving | |
| - name: Lint with flake8 and black | |
| run: make check | |
| working-directory: ./edge/model_serving/tflite_serving | |
| - name: Run unit tests | |
| run: make tflite_tests | |
| working-directory: ./edge/model_serving/tflite_serving | |
| - name: Upload unit test report | |
| uses: dorny/test-reporter@v1 | |
| if: ${{ always() }} | |
| with: | |
| name: Unit tests report in Python ${{ matrix.python-version }} | |
| path: edge/model_serving/tflite_serving/reports/tests-report.xml | |
| reporter: java-junit | |
| build_and_push_images: | |
| needs: lint_and_test_on_edge_model_serving | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - dockerfile: ./edge/model_serving/tflite_serving/Dockerfile | |
| image: ghcr.io/${{ github.repository }}/edge_tflite_serving | |
| context: ./edge/model_serving | |
| uses: ./.github/workflows/template_build_and_push_docker_images.yml | |
| with: | |
| context: ${{ matrix.context }} | |
| dockerfile: ${{ matrix.dockerfile }} | |
| image: ${{ matrix.image }} | |
| secrets: | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} |