Skip to content

Commit f0689dc

Browse files
committed
change Travis to GitHub Actions
1 parent 760f533 commit f0689dc

File tree

2 files changed

+19
-18
lines changed

2 files changed

+19
-18
lines changed

.github/workflows/test.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Test and Publish
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
tests:
8+
name: Tests
9+
runs-on: ubuntu-latest
10+
timeout-minutes: ${{ fromJSON(vars.DEFAULT_JOB_TIMEOUT_MINUTES) }}
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v4
14+
- name: Test
15+
run: |
16+
composer self-update && composer --version
17+
composer install --prefer-dist --no-interaction
18+
composer exec codecept build -v
19+
composer test -v

.travis.yml

-18
This file was deleted.

0 commit comments

Comments
 (0)