Skip to content

Commit

Permalink
♻️ CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
p-samuel committed Oct 25, 2023
1 parent 29d97f7 commit 91e95a8
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflow/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Delphi CI/CD

on:
push:
branches:
- net-http

jobs:
build:
runs-on: alpine:latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install Wine
run: sudo apt-get update && sudo apt-get install wine64

- name: Run Delphi Tests
run: |
wine ../../bin/win32/NtfyForDelphiTests.exe
$status=$?
if [ $status -eq 0 ]; then
echo "Tests passed"
else
echo "Tests failed"
fi
exit $status

0 comments on commit 91e95a8

Please sign in to comment.