CI/CD
GitHub Integration with Test Management by Testsigma
Integrate GitHub with Test Management by Testsigma and automate your test runs and generate test reports.
Integrate GitHub with Test Management by Testsigma to automate test executions and generate test reports through CI/CD pipelines. This article discusses integrating GitHub with Test Management by Testsigma.
Prerequisites
Before you begin, ensure:
- You have a Project in Test Management by Testsigma and Test Runs are available.
- You have an API token from Test Management by Testsigma.
- You have a GitHub account.
Configuring the GitHub Actions Workflow
Section titled “Configuring the GitHub Actions Workflow”-
Navigate to your GitHub repository.
-
Open or create the
.github/workflows/tests.ymlfile in the root directory. -
Add the following code into the
tests.ymlfile:name: CI Build and Upload to Testsigmaon:push:branches:- main # Or your target branchjobs:build:runs-on: ubuntu-latestenv:TESTSIGMA_API_TOKEN: ${{ secrets.TESTSIGMA_API_TOKEN }}steps:# ✅ Step 1: Check out the code- name: 🧾 Check out codeuses: actions/checkout@v3# 🔨 Step 2: Build the project and generate test reports- name: 🔨 Build and test with Mavenrun: |mvn -B package --file pom.xml# 📤 Step 3: Upload test results to Testsigma- name: 📤 Upload test results to Testsigmarun: |echo "Uploading JUnit results to Testsigma..."curl --location 'https://test-management.testsigma.com/api/v1/projects/{Project_ID}/junit-import/test-run/{Run_ID}' \--header "Authorization: Bearer $TESTSIGMA_API_TOKEN" \--form "junit_xml=@target/surefire-reports/TEST-MyTests.xml"
Trigger a Build in GitHub
Section titled “Trigger a Build in GitHub”-
Push a commit to the main (or configured) branch.
-
GitHub Actions will run the workflow.
-
After completion, the corresponding test run in Testsigma will be automatically updated with the test execution results.