2020-05-20 23:26:45 +02:00
|
|
|
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
|
|
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
|
|
|
|
|
|
|
|
name: Python package
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-03-15 22:28:54 +01:00
|
|
|
branches: [ master ]
|
2020-05-20 23:26:45 +02:00
|
|
|
pull_request:
|
2021-03-15 22:28:54 +01:00
|
|
|
branches: [ master ]
|
2020-12-06 18:42:28 +01:00
|
|
|
workflow_dispatch:
|
2021-03-15 22:28:54 +01:00
|
|
|
branches: [ master ]
|
2020-05-20 23:26:45 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-03-29 02:44:35 +02:00
|
|
|
python-version: [3.8, 3.9, "3.10"]
|
2020-05-20 23:26:45 +02:00
|
|
|
|
|
|
|
steps:
|
2022-03-02 11:10:13 +01:00
|
|
|
- uses: actions/checkout@v3
|
2020-05-20 23:26:45 +02:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2022-03-01 11:10:14 +01:00
|
|
|
uses: actions/setup-python@v3
|
2020-05-20 23:26:45 +02:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -r requirements-tests.txt
|
|
|
|
- name: Lint with flake8
|
|
|
|
run: |
|
|
|
|
flake8 sshuttle tests --count --show-source --statistics
|
|
|
|
- name: Test with pytest
|
|
|
|
run: |
|
|
|
|
PYTHONPATH=$PWD pytest
|