Skip to content

Bump github/codeql-action/upload-sarif from 4.36.3 to 4.37.0 #920

Bump github/codeql-action/upload-sarif from 4.36.3 to 4.37.0

Bump github/codeql-action/upload-sarif from 4.36.3 to 4.37.0 #920

Workflow file for this run

name: Pytest unit/integration-run-tests.yml
on:
pull_request:
push:
branches:
- main
defaults:
run:
shell: bash
jobs:
build-test:
name: Test Run (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.10, 3.11, 3.12, 3.13, 3.14]
steps:
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -e .[test]
- name: Run tests with pytest
run: |
pytest --cov=kececinumbers --cov-report=xml
- name: Prepare Ubuntu (OpenBLAS)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
sudo apt-get update && sudo apt-get install -y libopenblas-dev
- name: Upload coverage to Codecov
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' }}
uses: codecov/codecov-action@v7