From a574a74042e63458d1548034a66045a926bbc57e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Thu, 24 Oct 2019 00:18:28 +0200 Subject: [PATCH] Add CI via Actions --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 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 00000000..20eec0e0 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +name: CI +on: [push] + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + matrix: + native_ext: ['', '1'] + os: [ubuntu-latest, macOS-latest] + + steps: + - uses: actions/checkout@v1 + - name: Install bats + run: git clone --depth 1 https://github.com/sstephenson/bats.git + - name: Run tests + env: + RBENV_NATIVE_EXT: ${{ matrix.native_ext }} + run: PATH="./bats/bin:$PATH" test/run