summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorShupilkin Stanislav Yurevich <[email protected]>2019-10-23 21:03:22 +0300
committerShupilkin Stanislav Yurevich <[email protected]>2019-10-23 21:03:22 +0300
commitd38f45a4795a95f1c3382829c6dc7cb0345f23e4 (patch)
tree980e70db80162e704af772eacb72588a878b7d1d /.github
parent3e335a7c62a0f67b6290fc4982e541eeb93d483c (diff)
Add carcase for ci
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/blank.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml
new file mode 100644
index 00000000..5a3707c5
--- /dev/null
+++ b/.github/workflows/blank.yml
@@ -0,0 +1,31 @@
+name: CI
+
+on:
+ push:
+ branches:
+ tags:
+ pull_requets:
+
+jobs:
+
+ build:
+ name: Build
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ php: [7.1, 7.2, 7.3, 7.4]
+ steps:
+
+ - name: Set up Go 1.12
+ uses: actions/setup-go@v1
+ with:
+ go-version: 1.12
+ id: go
+
+ - name: Check out code into the Go module directory
+ uses: actions/checkout@v1
+
+ - name:
+ run: |
+ php ${{ matrix.php }} -v
+ composer -V