Skip to content

Commit

Permalink
Replaced Azure Pipelines with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pmaene committed Oct 29, 2020
1 parent 9045994 commit dc794dd
Show file tree
Hide file tree
Showing 16 changed files with 30 additions and 148 deletions.
8 changes: 0 additions & 8 deletions .azure-pipelines/00-install-less.yml

This file was deleted.

8 changes: 0 additions & 8 deletions .azure-pipelines/00-install-node.yml

This file was deleted.

10 changes: 0 additions & 10 deletions .azure-pipelines/00-install-php-modules.yml

This file was deleted.

11 changes: 0 additions & 11 deletions .azure-pipelines/00-install-postgresql.yml

This file was deleted.

8 changes: 0 additions & 8 deletions .azure-pipelines/00-install-redis.yml

This file was deleted.

12 changes: 0 additions & 12 deletions .azure-pipelines/10-configure-php.yml

This file was deleted.

10 changes: 0 additions & 10 deletions .azure-pipelines/10-configure-postgresql.yml

This file was deleted.

8 changes: 0 additions & 8 deletions .azure-pipelines/20-configure-litus.yml

This file was deleted.

14 changes: 0 additions & 14 deletions .azure-pipelines/30-run-composer.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .azure-pipelines/40-run-phpcs.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .azure-pipelines/40-run-phpstan.yml

This file was deleted.

5 changes: 0 additions & 5 deletions .azure-pipelines/50-run-doctrine.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .azure-pipelines/50-run-install-all.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .azure-pipelines/50-run-update.yml

This file was deleted.

5 changes: 5 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,8 @@ updates:
- dependency-name: twitter/bootstrap
versions:
- "> 3.4.1"

- package-ecosystem: docker
directory: /
schedule:
interval: daily
25 changes: 25 additions & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: PHP

on:
pull_request: {}
push:
branches:
- master

jobs:
test:
name: Test
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/[email protected]

- name: Bring up containers
run: docker-compose up -d

- name: Initialise Litus
run: docker-compose run --rm php-cli init

- name: Test response
run: curl -fsSL -I --retry 5 --retry-delay 0 --retry-max-time 30 http://localhost:8080

0 comments on commit dc794dd

Please sign in to comment.