Skip to content

badge for workflow

badge for workflow #12

Workflow file for this run

name: pyWitness
on:
push:
branches:
- main
- "releases/**"
pull_request:
release:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
name: Test with Python
runs-on: [ubuntu-latest]
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Get dependencies and install pyWitness
run: |
python -m pip install --upgrade pip wheel setuptools
python -m pip install --upgrade --verbose .[test]