Skip to content

Extract dataset from WikiJS #1

Extract dataset from WikiJS

Extract dataset from WikiJS #1

Workflow file for this run

name: Python application
on: pull_request
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.7"
- uses: actions/cache@v3
name: Define a cache for the virtual environment based on the dependencies lock file
with:
path: ./.venv
key: venv-${{ hashFiles('poetry.lock') }}
- name: Install dev dependencies
run: |
poetry install --with dev
- name: Run the automated tests (for example)
run: poetry run pytest
env:
WIKIJS_API_TOKEN: ${{ secrets.WIKIJS_API_TOKEN }}