Skip to content

ci: update GitHub Actions workflow configuration #232

ci: update GitHub Actions workflow configuration

ci: update GitHub Actions workflow configuration #232

Workflow file for this run

name: CI
on:
pull_request:
branches: [ "main", "staging" ]
push:
branches: [ "main", "staging", "main_V2", "fix/management-api-build-process" ]
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
unittest:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: "3.9"
- python-version: "3.10"
- python-version: "3.11"
- python-version: "3.12"
- python-version: "3.13"
steps:
- name: Checkout Code Repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: |
requirements.txt
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: pytest --cov=kinde_sdk --cov-branch --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
ignore:
- "kinde_sdk/management/api/*"

Check failure on line 54 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 54, Col: 13): A sequence was not expected
- "kinde_sdk/management/models/*"
- "kinde_sdk/management/schemas.py"
- "kinde_sdk/management/rest.py"
- "kinde_sdk/management/api_client.py"
- "kinde_sdk/management/configuration.py"
- "kinde_sdk/management/api_response.py"
- "kinde_sdk/management/exceptions.py"
- "kinde_sdk/management/__init__.py"