Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .github/workflows/test-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,30 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
python-version: ["3.10", "3.14"]

name: GitHub Action
steps:
- name: Checkout
uses: actions/checkout@v6

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- name: Display Python version
run: python -c "import sys; print(sys.version)"

- name: Install dependencies
run: |
python -m pip install -r requirements.txt
python -m pip install -r requirements-dev.txt

- name: Lint
run: |
make lint-check

- name: Unittest
run: |
make coverage-check
14 changes: 13 additions & 1 deletion .github/workflows/test-notify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,30 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
python-version: ["3.10", "3.14"]

name: GitHub Action
steps:
- name: Checkout
uses: actions/checkout@v6

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- name: Display Python version
run: python -c "import sys; print(sys.version)"

- name: Install dependencies
run: |
python -m pip install -r requirements.txt
python -m pip install -r requirements-dev.txt

- name: Lint
run: |
make lint-notify

- name: Unittest
run: |
make coverage-notify
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ It parses incoming SMSs and acknowledges host/service problems if an SMS request

## Requirements

Python 2.6 or 2.7
Python 3

## Configuration

Expand Down
200 changes: 0 additions & 200 deletions check_smseagle

This file was deleted.

1 change: 0 additions & 1 deletion check_smseagle.py

This file was deleted.

Loading