Files
node-26/.gitea/workflows/ci.yml
T
Logan c5984f6318
CI / lint (push) Failing after 4s
CI / test (push) Successful in 18s
CI Fixes 2
2026-04-21 00:51:12 -04:00

31 lines
627 B
YAML

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: drb-edge-node
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: python3 -m pip install --break-system-packages -r requirements.txt pytest
- name: Run tests
run: python3 -m pytest tests -v
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lint
run: |
python3 -m pip install --break-system-packages flake8
python3 -m flake8 drb-edge-node/app --max-line-length=120