Skip to content

Remove duplicate information #286

Remove duplicate information

Remove duplicate information #286

Workflow file for this run

name: Tests
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install Black
run: |
sudo pip install black==22.12.0
- name: Run Black
run: |
black -l 88 copper tests --check
- name: Test with pytest
run: |
pip install pytest
pytest -s