Fixes Store.triples #187
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: build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
release: | |
types: | |
- published | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.13 | |
cache: pip | |
- run: pip install --upgrade pre-commit | |
- run: pre-commit run --all-files | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.13 | |
cache: pip | |
- run: pip install . && pip install -r requirements-dev.txt | |
- run: python -m unittest | |
working-directory: ./tests | |
test_msv: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
cache: pip | |
- run: pip install . && pip install -r requirements-dev.txt && pip install 'rdflib==6.3.0' | |
- run: python -m unittest | |
working-directory: ./tests | |
publish: | |
if: startsWith(github.ref, 'refs/tags') | |
runs-on: ubuntu-latest | |
environment: | |
name: pypi | |
url: https://pypi.org/p/oxrdflib | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.13 | |
cache: pip | |
- run: pip install build | |
- run: python -m build --sdist --wheel --outdir dist/ . | |
- uses: pypa/gh-action-pypi-publish@release/v1 |