Skip to content

Bump coverage from 7.6.1 to 7.6.4 #105

Bump coverage from 7.6.1 to 7.6.4

Bump coverage from 7.6.1 to 7.6.4 #105

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python-Fluent-Results
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.8', '3.9', '3.10']
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Set up Python Interpreters
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
- name: Lint with pylint
run: |
find . -name '*.py' -exec pylint {} \;
- name: Test with Pytest
run: ./test.sh