We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e16bcd commit d4e14edCopy full SHA for d4e14ed
.github/workflows/main.yml
@@ -51,6 +51,21 @@ jobs:
51
name: lcov
52
path: coverage-reports/lcov.info
53
retention-days: 1
54
+ test-q:
55
+ runs-on: ubuntu-latest
56
+ steps:
57
+ - name: Checkout
58
+ uses: actions/checkout@v4
59
+ - name: Login to GitLab
60
+ uses: docker/login-action@v3
61
+ with:
62
+ registry: registry.gitlab.com
63
+ username: ${{ secrets.GL_REG_USERNAME }}
64
+ password: ${{ secrets.GL_REG_TOKEN }}
65
+ - name: Run qCumber
66
+ run: ./qcumber.sh -src test/q/main.q -test test/q/tests
67
+ env:
68
+ KDB_K4LICENSE_B64: ${{ secrets.KDB_K4LICENSE_B64 }}
69
70
app-sec:
71
needs: [test, test-q]
0 commit comments