Skip to content

Commit

Permalink
Merge pull request #10 from cmb69/cmb/ubuntu-ci
Browse files Browse the repository at this point in the history
Add basic CI for Ubuntu
  • Loading branch information
eklausme authored Oct 27, 2024
2 parents 7931246 + f0b825a commit ad59881
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
name: Build and Test
on: [push, pull_request]
jobs:
ubuntu:
strategy:
matrix:
version: ['8.0', '8.1', '8.2', '8.3', '8.4']
runs-on: ubuntu-latest
steps:
- name: Checkout md4c
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{matrix.version}}
tools: phpize
- name: phpize
run: phpize
- name: configure
run: ./configure --enable-md4c
- name: make
run: make
- name: test
run: make test TESTS=tests
windows:
defaults:
run:
Expand Down

0 comments on commit ad59881

Please sign in to comment.