From fbbe93f99c749bdd1b955483b9d1225658563ec8 Mon Sep 17 00:00:00 2001 From: Austin Ziegler Date: Mon, 22 Jun 2020 23:10:15 -0400 Subject: Try GitHub Actions for diff-lcs CI --- .github/workflows/ci.yml | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 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..bbf09ec --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,48 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake +# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby + +name: CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + test: + strategy: + matrix: + os: + - ubuntu + - macos + - windows + ruby: + - 2.5 + - 2.6 + - 2.7 + - head + - debug + - mingw + - mswin + - jruby + - jruby-head + - truffleruby + - truffleruby-head + runs-on: ${{ matrix.os }}-latest + continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }} + steps: + - uses: actions/checkout@v2 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby }} + bundler-cache: true + - name: Install dependencies + run: bundle install + - name: Run tests + run: bundle exec rake -- cgit v1.2.1