Skip to content

Workflow file for this run

# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Upload Python Package
on:
[push]
defaults:
run:
shell: bash
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
sudo apt-get update -y
sudo apt-get install -y libxml2-dev libxslt-dev libssl-dev libcurl4-openssl-dev
- name: Build package
run: pip install . -r ./requirements.txt
- name: Test package
run: python ./doglib/testing/test_doglib_static.py
env:
EUROPEANA_WSKEY: ${{ secrets.EUROPEANA_WSKEY }}