mirror of
https://github.com/bia-technologies/yaxunit.git
synced 2024-12-03 08:45:31 +02:00
23 lines
505 B
YAML
23 lines
505 B
YAML
name: Run tests on Windows
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
v8_version:
|
|
description: 'Platform version'
|
|
type: string
|
|
required: true
|
|
locale:
|
|
type: string
|
|
required: false
|
|
default: ru_RU
|
|
artifact_name:
|
|
type: string
|
|
required: true
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ inputs.v8_version }}-${{ inputs.locale }}-Windows
|
|
cancel-in-progress: true
|
|
jobs:
|
|
execute-tests:
|
|
runs-on: windows-latest
|