Bump version, add builds, add setup
CI / lint (push) Failing after 42s
CI / test (push) Failing after 45s
Build edge-node / build (push) Failing after 1m42s

This commit is contained in:
Logan
2026-04-20 00:14:50 -04:00
parent 6ac05eff64
commit 01496ea9e7
9 changed files with 321 additions and 3 deletions
+38
View File
@@ -0,0 +1,38 @@
name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: drb-edge-node
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: pip install -r requirements.txt pytest
- name: Run tests
run: pytest tests -v
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Lint
run: |
pip install flake8
flake8 drb-edge-node/app --max-line-length=120