Skip to content

Upgrade internetarchive tool #521

Upgrade internetarchive tool

Upgrade internetarchive tool #521

Workflow file for this run

name: test_python
on:
pull_request:
branches: [master]
push:
branches: [master]
workflow_dispatch:
jobs:
test_python:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest] # , macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies
run: pip install -r requirements-dev.txt
- name: Run Python unit tests
run: pytest
- name: Mypy type checking
run: mypy --ignore-missing-imports --install-types --non-interactive .