You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
427 B
20 lines
427 B
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Run test suite
|
|
run: |
|
|
echo Running the tests of bibtexbrowser
|
|
curl -L -o reflectivedoc.php "https://www.monperrus.net/martin/pp4php.php?pp4php_source=reflectivedoc.php"
|
|
phpunit BibtexbrowserTest.php
|