Skip to content

Commit

Permalink
new GitHub Action syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
alantavares committed Sep 17, 2019
1 parent dd7f5ed commit 5ad9ee8
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 39 deletions.
39 changes: 0 additions & 39 deletions .github/main.workflow

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
on: push
name: Continuous Integration (CI)
jobs:
phpunit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: build
uses: actions/docker/cli@master
with:
args: build --target ci .
- name: phpunit
uses: actions/docker/cli@master
with:
args: build --target phpunit .
- name: phpstan
uses: actions/docker/cli@master
with:
args: build --target phpstan .
- name: phpcs
uses: actions/docker/cli@master
with:
args: build --target phpcs .
- name: lint
uses: actions/docker/cli@master
with:
args: build --target lint .

0 comments on commit 5ad9ee8

Please sign in to comment.