Skip to content

Commit

Permalink
ci: Add worfklow for testing installation from PyPI.
Browse files Browse the repository at this point in the history
Fixes #145
  • Loading branch information
pmav99 committed Jun 26, 2024
1 parent 78addc8 commit 536ddbc
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/install_from_pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: "Test installation from PyPI"

on:
workflow_dispatch:
schedule:
- cron: "4 5 * * *" # Every day at 05:04

jobs:
test_pypi_installation:
name: test PyPI installation
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: "ubuntu-latest"
python: "3.12"
steps:
- uses: actions/checkout@main
- uses: actions/setup-python@main
with:
python-version: ${{ matrix.python }}
# Debug
- run: type -a python
- run: python --version
- run: python -m pip --version
- run: python -m pip cache info
# Install the package from pypi
- run: python -m pip install searvey
- run: python -m pip freeze
# Checkout the version of code that got installed from PyPI
- run: git fetch --tags
- run: git checkout v$(python -c 'import importlib.metadata; print(importlib.metadata.version("searvey"))')
# Install test dependencies
- run: pip install -U $(cat requirements/requirements-dev.txt| grep --extended-regexp 'pytest=|pytest-recording=|urllib3=' | cut -d ';' -f1)
# Remove the source code (just to be sure that it is not being used)
- run: rm -rf searvey
# Run the tests
- run: make test

0 comments on commit 536ddbc

Please sign in to comment.