Skip to content

Bump python from 3.9.19 to 3.14.3 #378

Bump python from 3.9.19 to 3.14.3

Bump python from 3.9.19 to 3.14.3 #378

Workflow file for this run

name: non-sdk sample services tests
on:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
push:
# run workflow when merging to main or develop
branches:
- main
- master
- develop
workflow_dispatch:
jobs:
non_sdk_tests:
runs-on: ubuntu-latest
steps:
- name: Check out GitHub repo
if: "!contains(github.event.head_commit.message, 'skip ci')"
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9.19
- name: Install pipenv
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Set up for tests
if: "!contains(github.event.head_commit.message, 'skip ci')"
shell: bash
run: |
make test-setup
- name: Run tests
shell: bash
run: |
make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true