From 0a6944f553af7dd4afa7cb71b7873fa92417d3c3 Mon Sep 17 00:00:00 2001 From: John Hawthorn Date: Thu, 15 Aug 2019 15:30:39 -0700 Subject: Create CI workflow for GitHub actions (#120) --- .github/workflows/test.yml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..2057ece --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,40 @@ +name: CI + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + test: + name: Test ${{ matrix.compiler }} on ${{ matrix.os }} + strategy: + matrix: + compiler: [gcc, clang] + os: [ubuntu-latest, macOS-latest] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v1 + - name: Compile and run tests + run: make && make test + env: + CC: ${{ matrix.compiler }} + acceptance_test: + name: Acceptance Tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Set up Ruby 2.6 + uses: actions/setup-ruby@v1 + with: + ruby-version: 2.6.x + - name: Install dependencies and compile + run: | + gem install bundler + make + cd test/acceptance && bundle install --jobs 4 --retry 3 + - name: Run acceptance tests + run: make acceptance -- cgit v1.2.3