File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ # MIT License
2+ # Copyright (C) 2020 Tymko Oleg <olegtymko@yandex.ru> and contributors
3+ # All rights reserved.
4+
5+ name : Тестирование
6+ # Любой пуш и pr в проекте
7+ on : [push, pull_request]
8+
9+ jobs :
10+ build :
11+ runs-on : ${{ matrix.os }}
12+ strategy :
13+ fail-fast : false
14+ matrix :
15+ os : ['ubuntu-latest', 'macos-latest', 'windows-latest']
16+ oscript_version : ['1.8.3', 'stable']
17+
18+ steps :
19+ # Загрузка проекта
20+ - name : Актуализация
21+ uses : actions/checkout@v2
22+
23+ # Установка OneScript конкретной версии
24+ - name : Установка OneScript
25+ uses : otymko/setup-onescript@v1.1
26+ with :
27+ version : ${{ matrix.oscript_version }}
28+
29+ # Установка зависимостей пакета
30+ - name : Установка зависимостей
31+ run : |
32+ opm install opm
33+ opm install -l --dev
34+
35+ # Задача тестирования, в результате ожидается успешное выполнение
36+ - name : Тестирование
37+ run : oscript ./tasks/test.os
You can’t perform that action at this time.
0 commit comments