Skip to content

release 0.4.1

release 0.4.1 #9

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11" ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt install libmagic1
python -m pip install --upgrade pip
python -m pip install poetry
poetry install
- name: Lint with Mypy
run: |
poetry run mypy *.py drive tests
- name: Run Tests
run: |
poetry run pytest --cov=drive
- name: Test build
run: |
poetry build