Files
node-26/.gitea/workflows/ci.yml
T
Logan 2b8578a1c4
CI / test (push) Failing after 4s
CI / lint (push) Failing after 3s
CI Fixes
2026-04-21 00:45:27 -04:00

31 lines
579 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 -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 flake8
python3 -m flake8 drb-edge-node/app --max-line-length=120