1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-12 04:34:10 +02:00

Delete .github/workflows/blank.yml

This commit is contained in:
Anton Titovets 2024-03-16 23:57:37 +03:00 committed by GitHub
parent c630ef2894
commit 47a6964f78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,55 +0,0 @@
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
workflow_dispatch:
jobs:
Convert:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- name: Расшифровать тестовые данные
run: gpg --quiet --batch --yes --decrypt --passphrase="$ENC_JSON" --output ./data.json ./data.json.gpg
env:
ENC_JSON: ${{ secrets.ENC_JSON }}
- uses: otymko/setup-onescript@v1.4
with:
version: 1.9.0 # Требуемая версия OneScript
- name: Выполнить скрипт преобразования OPI -> OInt
run: oscript ./.github/workflows/convert.os
- name: Установить asserts и 1testrunner
run: |
opm install asserts
opm install 1testrunner
- name: Выполнить тесты
continue-on-error: true
run: oscript /home/runner/.local/share/ovm/current/lib/1testrunner/src/main.os -run ./OInt/tests/Modules/internal/OPI_Тесты.os
- name: Зашифровать данные обратно
continue-on-error: false
run: |
rm -f ./data.json.gpg
gpg --batch --symmetric --cipher-algo AES256 --passphrase="$ENC_JSON" data.json
rm -f ./data.json
env:
ENC_JSON: ${{ secrets.ENC_JSON }}
- uses: stefanzweifel/git-auto-commit-action@v5