CLI | Обновить yml процесса тестирования #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CLI | Обновить yml процесса тестирования | |
on: | |
workflow_dispatch: | |
jobs: | |
Make-CLI-Tests: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: write | |
contents: write | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{secrets.TOKEN}} | |
- uses: otymko/[email protected] | |
with: | |
version: 1.9.0 | |
- name: Установить cmdline, asserts и osparser | |
run: | | |
opm install cmdline | |
opm install asserts | |
opm install osparser | |
- name: Сформировать список методов ОПИ -> CLI | |
run: oscript ./.github/workflows/os/cli_parse.os | |
- name: Выполнить скрипт создания yml-файла | |
run: oscript ./.github/workflows/os/cli_testmaker.os > ./.github/workflows/cli_test.yml | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_user_name: Vitaly the Alpaca (bot) | |
commit_user_email: [email protected] | |
commit_author: Vitaly the Alpaca <[email protected]> | |
commit_message: Обновление yml файла - cli_test.yml (workflow) |