allow pinned deps #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Tests | |
on: | |
push: | |
workflow_dispatch: | |
inputs: | |
debug_enabled: | |
type: boolean | |
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' | |
required: false | |
default: false | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
env: | |
GALV_HARVESTER_TEST_PATH: .test-data/test-suite-small | |
strategy: | |
matrix: | |
# Python versions to test against - using GH matrix to run in parallel | |
# Each version should be in pyproject.toml[tool.hatch.envs.all.matrix] | |
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] | |
steps: | |
- uses: actions/checkout@v3 | |
# Enable tmate debugging of manually-triggered workflows if the input option was provided | |
- name: Setup tmate session | |
uses: mxschmitt/action-tmate@v3 | |
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} | |
# Get the test data | |
- name: Install smbclient | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y smbclient | |
- name: Restore cached test suite | |
id: cache-restore | |
uses: actions/cache/restore@v3 | |
with: | |
path: ${{ env.GALV_HARVESTER_TEST_PATH }} | |
key: liionsden-test-suite | |
- name: Download test suite | |
if: steps.cache-restore.outputs.cache-hit != 'true' | |
env: | |
LIIONSDEN_SMB_PATH: ${{ secrets.LIIONSDEN_SMB_PATH }} | |
LIIONSDEN_SMB_USERNAME: ${{ secrets.LIIONSDEN_SMB_USERNAME}} | |
LIIONSDEN_SMB_PASSWORD: ${{ secrets.LIIONSDEN_SMB_PASSWORD}} | |
run: | | |
sudo mkdir -p $GALV_HARVESTER_TEST_PATH | |
cd $GALV_HARVESTER_TEST_PATH | |
sudo smbget -R $LIIONSDEN_SMB_PATH/test-suite-small -U "$LIIONSDEN_SMB_USERNAME%$LIIONSDEN_SMB_PASSWORD" | |
- name: Cache test suite | |
id: cache-save | |
if: steps.cache-restore.outputs.cache-hit != 'true' | |
uses: actions/cache/save@v3 | |
with: | |
path: ${{ env.GALV_HARVESTER_TEST_PATH }} | |
key: ${{ steps.cache-restore.outputs.cache-primary-key }} | |
# Setup the appropriate Python version, hatch, and the dependencies | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install hatch | |
run: | | |
python -m pip install hatch | |
- name: Tests | |
run: hatch run +py=${{ matrix.python-version }} test | |
- name: Test CLI | |
run: hatch shell +py=${{ matrix.python-version }} -- -c "galv-harvester --help" | |
- name: Build dist | |
run: hatch build | |
# Publish if on a release tag | |
- name: Publish on PyPI | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
run: hatch publish |