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
56 changes: 28 additions & 28 deletions .github/workflows/checkpr.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
name: checkpr

on:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install deploy dependencies
run: pip install --group deploy
- name: Install code dependencies
run: pip install .
- name: Lint with pylint
run: pylint -E src
- name: Scan security vulnerabilities with bandit
run: bandit -c pyproject.toml -r .
- name: Generate coverage report
run: pytest
name: checkpr
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, "3.10", "3.11", "3.12", "3.13","3.14.0-rc.2"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install deploy dependencies
run: pip install --group deploy
- name: Install code dependencies
run: pip install .
- name: Lint with pylint
run: pylint -E src
- name: Scan security vulnerabilities with bandit
run: bandit -c pyproject.toml -r .
- name: Generate coverage report
run: pytest
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
python-version: [3.9, "3.10", "3.11", "3.12", "3.13", "3.14.0-rc.2"]

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"editor.formatOnSave": true,
"modulename": "${workspaceFolderBasename}",
"distname": "${workspaceFolderBasename}",
"venv": "${env:UserProfile}/pygpsclient",
//"venv": "${env:UserProfile}/pygpsclient",
"venv": "${env:HOME}/pygpsclient",
"python.testing.pytestArgs": [
"tests"
],
Expand Down
Loading