Skip to content

POS: allow quick-searching even when the first word contains a dash (… #19

POS: allow quick-searching even when the first word contains a dash (…

POS: allow quick-searching even when the first word contains a dash (… #19

Workflow file for this run

name: CI
'on':
push:
branches:
- master
pull_request:
branches:
- master
jobs:
Test:
env:
DEBUG: '1'
runs-on: 'ubuntu-20.04'
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9']
steps:
- name: 'Set up Python ${{ matrix.python-version }}'
uses: actions/setup-python@v2
with:
python-version: '${{ matrix.python-version }}'
- uses: actions/checkout@v2
- run: pip install tox-gh-actions tox
- run: tox
- uses: codecov/codecov-action@v2
Lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: pip
cache-dependency-path: |
pyproject.toml
requirements*txt
- uses: pre-commit/[email protected]
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v2
with:
python-version: '3.10'
- uses: actions/checkout@v2
- run: 'pip install build'
- run: python -m build .
- uses: actions/upload-artifact@v2
with:
name: dist
path: dist/