Skip to content

Add containerized testing framework for profile validation with TAP reporting, parallel execution and CI support #5

Add containerized testing framework for profile validation with TAP reporting, parallel execution and CI support

Add containerized testing framework for profile validation with TAP reporting, parallel execution and CI support #5

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker
run: |
docker --version
- name: Run tests
run: |
sh scripts/tests.sh
- name: Upload test report
if: always()
uses: actions/upload-artifact@v4
with:
name: test-report
path: test_report.txt
retention-days: 30