This repository has been archived by the owner on Nov 16, 2024. It is now read-only.
added 3 new db reports #68
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] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install dependencies | |
run: | | |
python -m pip install -U pip | |
pushd .. | |
git clone --depth 1 https://github.com/fastily/pwiki.git | |
pip install -e pwiki | |
popd | |
pip install -r requirements-dev.txt | |
- name: Test | |
run: | | |
python -m unittest |