2021-08-26 18:47:48 +02:00
|
|
|
name: ssh-audit
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-09-25 00:20:07 +02:00
|
|
|
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-rc.2"]
|
2021-08-26 18:47:48 +02:00
|
|
|
|
|
|
|
steps:
|
2024-09-25 00:20:07 +02:00
|
|
|
- uses: actions/checkout@v4
|
2021-08-26 18:47:48 +02:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2024-09-25 00:20:07 +02:00
|
|
|
uses: actions/setup-python@v5
|
2021-08-26 18:47:48 +02:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2024-09-27 00:31:21 +02:00
|
|
|
python3 -m pip install --upgrade pip
|
|
|
|
python3 -m pip install -U codecov coveralls flake8 mypy pylint pytest tox
|
2021-08-26 18:47:48 +02:00
|
|
|
- name: Run Tox
|
|
|
|
run: |
|
2024-09-27 00:31:21 +02:00
|
|
|
python3 -m tox
|