1
0
mirror of https://github.com/bia-technologies/yaxunit.git synced 2024-12-12 09:04:01 +02:00

add flows for win, mac

This commit is contained in:
alkoleft 2023-08-27 02:33:30 +03:00
parent 5b4629a28a
commit 4af53e031e
3 changed files with 50 additions and 1 deletions

View File

@ -1,4 +1,4 @@
name: Run tests
name: Run tests on Linux
on:
workflow_call:
@ -20,6 +20,7 @@ concurrency:
jobs:
execute-tests:
runs-on: ubuntu-20.04
steps:
- name: download artifact
uses: actions/download-artifact@v3

24
.github/workflows/run-tests-macos.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Run tests on MacOS
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 }}
cancel-in-progress: true
jobs:
execute-tests:
runs-on: macos-latest
steps:
- run: echo 'empty'

24
.github/workflows/run-tests-windows.yml vendored Normal file
View File

@ -0,0 +1,24 @@
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 }}
cancel-in-progress: true
jobs:
execute-tests:
runs-on: windows-latest
steps:
- run: echo 'empty'