Skip to content

Commit 23220b4

Browse files
committed
Remove Travis
1 parent acf9dd2 commit 23220b4

3 files changed

Lines changed: 33 additions & 21 deletions

File tree

.github/workflows/ci.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,36 @@ permissions: read-all
99
jobs:
1010
ci:
1111
uses: 'terminal42/contao-build-tools/.github/workflows/build-tools.yml@main'
12+
13+
php:
14+
name: PHP ${{ matrix.php-version }}
15+
runs-on: ubuntu-latest
16+
17+
strategy:
18+
matrix:
19+
php-version:
20+
- '8.3'
21+
- '8.4'
22+
- '8.5'
23+
24+
steps:
25+
- name: Checkout
26+
uses: actions/checkout@v4
27+
28+
- name: Setup PHP
29+
uses: shivammathur/setup-php@v2
30+
with:
31+
php-version: ${{ matrix.php-version }}
32+
coverage: xdebug
33+
34+
- name: Install dependencies
35+
run: COMPOSER_MEMORY_LIMIT=-1 composer install --dev --no-interaction
36+
37+
- name: Run tests
38+
run: |
39+
mkdir -p build/logs
40+
php vendor/bin/phpunit -c phpunit.xml.dist
41+
42+
- name: Upload coverage
43+
run: php vendor/bin/php-coveralls
44+
continue-on-error: true

.travis.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
[![Version](https://img.shields.io/packagist/v/codefog/tags-bundle)](https://packagist.org/packages/codefog/tags-bundle)
44
[![License](https://img.shields.io/github/license/codefog/tags-bundle)](https://github.com/codefog/tags-bundle/blob/master/LICENSE.txt)
55
[![Downloads](https://img.shields.io/packagist/dm/codefog/tags-bundle)](https://packagist.org/packages/codefog/tags-bundle)
6-
[![Build Status](https://travis-ci.org/codefog/tags-bundle.svg?branch=master)](https://travis-ci.org/codefog/tags-bundle)
76
[![Coverage Status](https://coveralls.io/repos/github/codefog/tags-bundle/badge.svg?branch=master)](https://coveralls.io/github/codefog/tags-bundle?branch=master)
87

98
Tags Bundle is an extension for the [Contao Open Source CMS](https://contao.org).

0 commit comments

Comments
 (0)