Skip to content

Upgraded packaging infrastructure #43

Upgraded packaging infrastructure

Upgraded packaging infrastructure #43

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: Install project with dev dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Run tests
run: |
make test
- name: Show scraper help
run: scraper -h