Skip to content

Switch np.float64 to float type #230

Switch np.float64 to float type

Switch np.float64 to float type #230

Workflow file for this run

name: Python package
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install dev dependencies
run: pip install -r requirements_test.txt
- name: Run Linter
run: flake8 src tests
- name: Run Safety
run: safety check -r requirements.txt
- name: Run Bandit
run: bandit -r src
- name: Run Vulture
run: vulture src --min-confidence 80
- name: Run tests
run: python -m pytest tests