Bump jsonschema from 3.2.0 to 4.25.1 #369
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: 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 |