From 82e75d99cefab90db60673d5582834698d23fca1 Mon Sep 17 00:00:00 2001 From: Zach Borboa Date: Sun, 14 Mar 2021 16:09:44 -0400 Subject: [PATCH] Add GitHub Actions continuous integration workflow --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..8868446 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: ci + +on: + push: + branches: + - master + +jobs: + ci: + runs-on: ubuntu-latest + strategy: + matrix: + php: ['8.0'] + steps: + - run: | + bash tests/before_script.sh + bash tests/script.sh