Skip to content

[Snyk] Security upgrade python from 3.12-slim to 3.13.0a3-slim #37

[Snyk] Security upgrade python from 3.12-slim to 3.13.0a3-slim

[Snyk] Security upgrade python from 3.12-slim to 3.13.0a3-slim #37

Workflow file for this run

name: test-kylin-api
on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
jobs:
test-kylin-api:
name: Execute tests with pytest
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements/common.txt
pip install -r requirements/develop.txt
- name: Test api with pytest
run: pytest