Skip to content

Fix bugs in broadbean element and sequence #1797

Fix bugs in broadbean element and sequence

Fix bugs in broadbean element and sequence #1797

Workflow file for this run

name: Run mypy and pytest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- 'main'
- 'release/*'
- 'version1.0'
tags:
- 'v*'
pull_request:
merge_group:
branches: ['main']
jobs:
pytestmypy:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11"]
exclude:
- os: windows-latest
python-version: "3.9"
- os: windows-latest
python-version: "3.11"
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4.1.1
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: |
pyproject.toml
requirements.txt
- name: upgrade pip setuptools wheel
run: python -m pip install --upgrade pip setuptools wheel
shell: bash
- name: install broadbean with test dependencies
run: |
pip install .[test] -c requirements.txt
- name: Run Mypy
run: mypy -p broadbean
- name: Run tests
run: |
pytest --cov=broadbean --cov-report xml --hypothesis-profile ci broadbean
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3.1.4
with:
file: ./coverage.xml
env_vars: OS,PYTHON