mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-06-22 00:31:14 +00:00
start over again
This commit is contained in:
@@ -1,15 +0,0 @@
|
||||
## Summary
|
||||
[1-3 bullet points describing the change]
|
||||
|
||||
## Related Tasks
|
||||
[JIRA-ID links]
|
||||
|
||||
## Testing
|
||||
- [ ] Unit tests pass
|
||||
- [ ] Integration tests pass
|
||||
- [ ] Manual testing done (if applicable)
|
||||
|
||||
## Checklist
|
||||
- [ ] No new linter warnings
|
||||
- [ ] No secrets committed
|
||||
- [ ] API docs updated (if applicable)
|
||||
@@ -1,43 +0,0 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- dev
|
||||
|
||||
jobs:
|
||||
python-quality:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.10"
|
||||
- name: Install
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
python -m pip install -e ".[dev]"
|
||||
- name: Format check
|
||||
run: python -m black --check src tests
|
||||
- name: Lint
|
||||
run: python -m ruff check src tests
|
||||
- name: Unit tests
|
||||
run: python -m pytest tests/unit
|
||||
|
||||
replay-compose-smoke:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Validate compose files
|
||||
run: |
|
||||
docker compose -f docker-compose.yml config
|
||||
docker compose -f docker-compose.test.yml config
|
||||
- name: Collect artifact placeholders
|
||||
run: mkdir -p data/test-results e2e/reports
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: replay-evidence-placeholders
|
||||
path: |
|
||||
data/test-results
|
||||
e2e/reports
|
||||
Reference in New Issue
Block a user