Skip to content

build(deps): bump actions/setup-python from 5.3.0 to 5.4.0 #311

build(deps): bump actions/setup-python from 5.3.0 to 5.4.0

build(deps): bump actions/setup-python from 5.3.0 to 5.4.0 #311

Workflow file for this run

name: Python Test
on:
push:
branches:
- develop
pull_request:
branches:
- master
- develop
jobs:
build:
runs-on: ubuntu-latest
env:
CI: true
timeout-minutes: 10
strategy:
max-parallel: 4
matrix:
python-version: ['3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r dev-requirements.txt -r requirements.txt
- name: Test with pytest
run: |
pytest