Skip to content

Introduce CI testing of existing PyPI release #1

Introduce CI testing of existing PyPI release

Introduce CI testing of existing PyPI release #1

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Check Last PyPI Release
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
# - uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install latest from PyPI
run: |
python -m pip install ash-williams
- name: Literally just invoke it # Consider a more elaborate test
run: |
python -c "from ash import Paper, RetractionDatabase;print(ash.Paper)"