1
0
Fork 0
mirror of synced 2024-06-26 10:00:19 +12:00
ArchiveBox/.github/workflows/test.yml

83 lines
2.3 KiB
YAML
Raw Normal View History

2020-11-28 23:32:38 +13:00
name: 'Test'
2020-07-04 08:52:28 +12:00
on: [push]
jobs:
2020-11-28 23:32:38 +13:00
pytest:
2020-07-23 11:30:36 +12:00
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python: [3.7, 3.8]
2020-07-04 08:52:28 +12:00
steps:
2020-07-23 11:30:36 +12:00
- uses: actions/checkout@v2
2020-07-04 08:52:28 +12:00
with:
2020-11-28 23:48:45 +13:00
submodules: true
2020-07-04 08:52:28 +12:00
fetch-depth: 1
### Setup Python & JS Languages
2020-07-23 11:30:36 +12:00
- name: Set up Python ${{ matrix.python }}
2020-07-04 08:52:28 +12:00
uses: actions/setup-python@v1
with:
2020-07-23 11:30:36 +12:00
python-version: ${{ matrix.python }}
2020-07-04 08:52:28 +12:00
architecture: x64
2020-07-23 11:30:36 +12:00
- name: Set up Node JS 14.7.0
uses: actions/setup-node@v1
with:
node-version: 14.7.0
### Install Python & JS Dependencies
2020-08-06 06:30:20 +12:00
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: Cache pip
2020-07-28 16:13:10 +12:00
uses: actions/cache@v2
id: cache-pip
2020-07-23 11:30:36 +12:00
with:
2020-08-06 06:30:20 +12:00
path: ${{ steps.pip-cache.outputs.dir }}
2020-07-28 16:13:10 +12:00
key: ${{ runner.os }}-${{ matrix.python }}-venv-${{ hashFiles('setup.py') }}
2020-07-23 11:30:36 +12:00
restore-keys: |
2020-07-28 16:13:10 +12:00
${{ runner.os }}-${{ matrix.python }}-venv-
2020-07-23 11:30:36 +12:00
2020-08-14 16:35:43 +12:00
- name: Install pip dependencies
run: |
2020-11-28 22:29:06 +13:00
python -m pip install --upgrade pip setuptools wheel pytest bottle
./bin/build_pip.sh
python -m pip install .
- name: Get npm cache dir
id: npm-cache
run: |
echo "::set-output name=dir::$GITHUB_WORKSPACE/node_modules"
- name: Cache npm
uses: actions/cache@v2
id: cache-npm
2020-08-05 02:01:17 +12:00
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node_modules-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node_modules
- name: Install npm requirements
run: |
npm install
echo "SINGLEFILE_BINARY=$GITHUB_WORKSPACE/node_modules/.bin/single-file" >> $GITHUB_ENV
echo "READABILITY_BINARY=$GITHUB_WORKSPACE/node_modules/.bin/readability-extractor" >> $GITHUB_ENV
echo "MERCURY_BINARY=$GITHUB_WORKSPACE/node_modules/.bin/mercury-parser" >> $GITHUB_ENV
2020-08-05 02:01:17 +12:00
### Run the tests
- name: Directory listing for debugging
2020-07-28 23:31:39 +12:00
run: |
pwd
ls -a ./
archivebox version
2020-07-23 11:30:36 +12:00
- name: Test built package with pytest
run: |
python -m pytest -s