Skip to content

Fix ArchivesSpace URL parsing in Python 3.9+ #20

Fix ArchivesSpace URL parsing in Python 3.9+

Fix ArchivesSpace URL parsing in Python 3.9+ #20

Workflow file for this run

---
name: "Test"
on:
pull_request:
push:
branches:
- "master"
jobs:
tox:
name: "Test Python ${{ matrix.python-version }}"
runs-on: "ubuntu-20.04"
strategy:
fail-fast: false
matrix:
python-version: [
"3.6",
"3.7",
"3.8",
"3.9",
"3.10",
"3.11",
]
steps:
- name: "Check out repository"
uses: "actions/checkout@v3"
- name: "Set up Python ${{ matrix.python-version }}"
uses: "actions/setup-python@v4"
with:
python-version: "${{ matrix.python-version }}"
- name: "Get pip cache dir"
id: "pip-cache"
run: |
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: "Cache pip packages"
uses: "actions/cache@v3"
with:
path: "${{ steps.pip-cache.outputs.dir }}"
key: "${{ runner.os }}-pip-${{ hashFiles('**/base.txt', '**/local.txt', '**/production.txt') }}"
restore-keys: |
${{ runner.os }}-pip-
- name: "Install tox"
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: "Run tox"
run: |
tox -- --cov-config .coveragerc --cov-report xml:coverage.xml
- name: "Upload coverage report"
if: github.repository == 'artefactual-labs/agentarchives'
uses: "codecov/codecov-action@v3"
with:
files: ./coverage.xml
fail_ci_if_error: false
verbose: true
lint:
name: "Lint"
runs-on: "ubuntu-22.04"
steps:
- name: "Check out repository"
uses: "actions/checkout@v3"
- name: "Set up Python"
uses: "actions/setup-python@v4"
with:
python-version: "3.8"
- name: "Install tox"
run: |
python -m pip install --upgrade pip
pip install tox
- name: "Run tox"
run: |
tox -e linting