Skip to content

Merge branch 'main' of github.com:Zepolimer/python-advanced-search #20

Merge branch 'main' of github.com:Zepolimer/python-advanced-search

Merge branch 'main' of github.com:Zepolimer/python-advanced-search #20

Workflow file for this run

name: Python Advanced Search
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install setuptools wheel twine
- name: Test with unittest
run: |
python3 -m unittest discover .
- name: Creating package
run: |
python3 setup.py bdist_wheel