Skip to content

Refactor: making run_trash_list returning the result as a return valu… #229

Refactor: making run_trash_list returning the result as a return valu…

Refactor: making run_trash_list returning the result as a return valu… #229

Workflow file for this run

# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python test
on:
push:
branches: [ "*" ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: python -m pip install -r requirements-dev.txt -r requirements.txt
- name: Check Types
run: ./scripts/check-types
if: matrix.python-version != '2.7'
- name: Run tests
run: python -m pytest