mirror of
https://github.com/BorysLevytskyi/BitwiseCmd.git
synced 2026-01-15 08:22:37 +01:00
* Fix manual BitwiseCmdTests workflow triggers * Remove PR trigger from manual BitwiseCmdTests workflow
21 lines
501 B
YAML
21 lines
501 B
YAML
name: Manual BitwiseCmdTests
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
run-bitwisecmdtests:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run BitwiseCmdTests
|
|
uses: ./.github/actions/bitwisecmdtests
|
|
with:
|
|
test-command: test-prod
|
|
upload-artifact: 'true'
|
|
artifact-name: bitwisecmdtests-results
|
|
bitwisecmd-tests-token: ${{ secrets.BITWISECMD_TESTS_TOKEN }}
|