Skip to content

Upgraded packaging infrastructure #40

Upgraded packaging infrastructure

Upgraded packaging infrastructure #40

Workflow file for this run

name: llnl-scraper
on:
pull_request: []
jobs:
testing:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
name: Python ${{ matrix.python-version }} Tests
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Python Tests
run: |
conda create --quiet --name test pytest
export PATH="/usr/share/miniconda/bin:$PATH"
source activate test
pip install bandit black isort flake8
pip install .
npm install -g [email protected]
make test
scraper -h