remove unused import #200
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow runs tests using tox. | |
name: Run tox | |
on: push | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- name: Install bibat | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[development] | |
- name: Run tox | |
run: tox | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 |