From 27c2d2263bb120794b71126cf36607cc3f904ef2 Mon Sep 17 00:00:00 2001 From: Mathew Davies Date: Sun, 22 Sep 2019 22:50:34 +0100 Subject: [PATCH 1/4] Create a blank.yml --- .github/workflows/blank.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/blank.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 0000000..f1a38e5 --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,12 @@ +name: CI + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@master + - name: GitHub Action for PHPUnit + uses: pxgamer/phpunit-action@v1.0.0 From ffcbab397d7e8f4fb48131c5b365c61550363d28 Mon Sep 17 00:00:00 2001 From: Mathew Davies Date: Sun, 22 Sep 2019 22:54:41 +0100 Subject: [PATCH 2/4] Update blank.yml --- .github/workflows/blank.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index f1a38e5..bb4584f 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -6,7 +6,9 @@ jobs: build: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@master - - name: GitHub Action for PHPUnit - uses: pxgamer/phpunit-action@v1.0.0 + - name: Checkout + uses: actions/checkout@master + - name: Composer Action + uses: MilesChou/composer-action@v0.0.1 + - name: GitHub Action for PHPUnit + uses: pxgamer/phpunit-action@v1.0.0 From 58e6ebb1e205a660c109bc2d61c5371daf4f58b1 Mon Sep 17 00:00:00 2001 From: Mathew Davies Date: Sun, 22 Sep 2019 23:00:25 +0100 Subject: [PATCH 3/4] Update blank.yml --- .github/workflows/blank.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index bb4584f..2edc0d7 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -10,5 +10,6 @@ jobs: uses: actions/checkout@master - name: Composer Action uses: MilesChou/composer-action@v0.0.1 + run: install - name: GitHub Action for PHPUnit uses: pxgamer/phpunit-action@v1.0.0 From aa270902032face5d54cd9555cbb7d9b8365dac0 Mon Sep 17 00:00:00 2001 From: Mathew Davies Date: Sun, 22 Sep 2019 23:02:26 +0100 Subject: [PATCH 4/4] Update blank.yml --- .github/workflows/blank.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index 2edc0d7..14ed5ad 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -10,6 +10,7 @@ jobs: uses: actions/checkout@master - name: Composer Action uses: MilesChou/composer-action@v0.0.1 - run: install + with: + args: install - name: GitHub Action for PHPUnit uses: pxgamer/phpunit-action@v1.0.0