Skip to content

Merge pull request #25 from pere3/master #16

Merge pull request #25 from pere3/master

Merge pull request #25 from pere3/master #16

Workflow file for this run

# @Author: jankincai
# @Date: 2024-09-12 10:45:37
# @Last Modified by: jankincai
# @Last Modified time: 2025-07-14 14:27:54
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Tests
on:
push:
branches: [ "master", "develop" ]
pull_request:
branches: [ "master", "develop" ]
jobs:
build:
# Python3.6 (ubuntu-20.04) has stopped maintenance, https://github.com/actions/runner-images/issues/11101
runs-on: macos-13
strategy:
fail-fast: false
matrix:
python-version: ["3.6"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest tox
brew install libpcap
- name: Lint with flake8
run: flake8 pylibpcap
- name: Test with pytest
run: |
python -m pip install -e .
pytest .