mirror of
https://github.com/gabrie30/ghorg.git
synced 2025-08-06 14:27:28 +02:00
11 lines
246 B
Batchfile
11 lines
246 B
Batchfile
@echo off
|
|
title Windows GitHub Integration Test
|
|
echo Starting Windows Integration Tests
|
|
|
|
ghorg.exe clone underdeveloped --token=%GITHUB_TOKEN%
|
|
|
|
IF %ERRORLEVEL% NEQ 0 Echo Tests Failed
|
|
IF %ERRORLEVEL% EQU 0 Echo Tests Passed
|
|
|
|
EXIT /B %ERRORLEVEL%
|