REPOSITORY
ontariotech/task-allocation Private
[참조 MVP] 다중 농기계 작업 배분 A-SW — 농기계 용량을 고려해 작업구역을 예상 완료시간이 최소가 되도록 배분합니다.
https://git.agrithing.ai/ontariotech/task-allocation.git e513f8a feat: adopt python SERVICE SDV reference implementation
9619a21 feat: adopt python SERVICE SDV reference implementation
9089584 ci: add language-specific static and dynamic analysis
3bf8432 docs: define component scope and interface contract
8da6f7a ci: verify contract tests and evidence package
9d1acf5 feat: add executable reference MVP
9a07d04 docs: define component scope and interface contract
1 items · main
·/ .gitea/workflows/verify.yml
yaml · 1.3 KB · 0ad2dae Download
name: Verify SDV reference MVPon: push: branches: [main] pull_request:jobs: verify: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Validate SDV metadata and interface contract run: | python -m json.tool .asw/sdv-component.json >/dev/null python -m json.tool .asw/quality-profile.json >/dev/null python -m json.tool contracts/component.interface.json >/dev/null - name: Static analysis · python-ast-policy run: python tools/quality_scan.py static --output dist/quality/static-analysis.json - name: Dynamic analysis · unittest-scenario run: python tools/quality_scan.py dynamic --output dist/quality/dynamic-analysis.json - name: Assemble quality summary run: python tools/quality_scan.py summary --output dist/quality/summary.json - name: Build evidence package run: | tar -czf dist/reference-mvp.tar.gz asw_component tests run.py pyproject.toml contracts examples release .asw README.md sha256sum dist/reference-mvp.tar.gz > dist/checksums.sha256 - name: Upload evidence uses: christopherhx/gitea-upload-artifact@v4 with: name: reference-mvp-evidence path: dist retention-days: 30