Skip to content

build(deps-dev): bump ruff from 0.4.9 to 0.4.10 #1381

build(deps-dev): bump ruff from 0.4.9 to 0.4.10

build(deps-dev): bump ruff from 0.4.9 to 0.4.10 #1381

Workflow file for this run

name: Tests
on:
push:
branches: ["master"]
pull_request:
branches: ["*"]
workflow_dispatch:
inputs:
release:
description: "Release package"
required: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
cache: "pip"
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Dependencies
run: |
python -m pip install -U pip poetry
poetry --version
poetry config --local virtualenvs.in-project true
poetry install --extras "pydantic faust faker"
- name: Test
run: ./scripts/test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4.5.0
with:
env_vars: OS,PYTHON
fail_ci_if_error: true
files: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true