Katalon with Github Actions integration

After checking the account I was using, it turns out that the free trial period for that account has expired.
When I switched to an account that still has an active free trial, the logs showing “no license available” no longer appeared :white_check_mark:

However, a new issue has arisen: the execution on GitHub Actions doesn’t stop and keeps running for up to 30 minutes. So I have to cancel it manually

You can check the full logs here: use mac instead of windows · depapp/sample-bdd-project-in-katalon-latest-version@44e9ed9 · GitHub

The yaml config for the github action:

name: Katalon Test
on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

jobs:
  build:
    runs-on: macos-latest
    steps:
    - name: Checkout
      uses: actions/checkout@v4
    - name: Katalon Studio Github Action
      uses: katalon-studio/katalon-studio-github-action@v4.0
      with:
          version: '9.7.3'
          projectPath: '${{ github.workspace }}'
          args: '-noSplash -runMode=console -retry=0 -testSuitePath="Test Suites/Test Suite - Login" -browserType="Chrome" -executionProfile="default" -apiKey= ${{ secrets.KATALON_API_KEY }} --config -webui.autoUpdateDrivers=true'

please help @vu.tran @kazurayam @Shin @Monty_Bagati @dineshh

3 Likes