Skip to content

Commit

Permalink
test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
partouf committed Apr 22, 2024
1 parent 8e834c5 commit dcca6d7
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test-fpc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test FPC

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-22.04

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install prerequisites
run: |
export DEBIAN_FRONTEND=noninteractive
sudo apt-get update
sudo apt-get install -y fpc-3.2.2
- name: Build testsuite
run: |
cd Tests
fpc -B -MDelphi "Underscore.Delphi.Springless.Tests.dpr"
- name: Test
run: ./Underscore.Delphi.Springless

0 comments on commit dcca6d7

Please sign in to comment.