Skip to content
patrickkenya edited this page Dec 6, 2019 · 1 revision

Welcome to the dtc wiki! @@ -0,0 +1,44 @@ name: Continuous Integration

on: push: branches: - master - /.-stable/ pull_request: branches: - master - /.-stable/

jobs: ci: name: 'SUITE: ${{ matrix.test_suite }} / OS: ${{ matrix.os }}' runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: test_suite: - test - default-site os: - ubuntu-latest - windows-latest steps: - uses: actions/checkout@v1 with: fetch-depth: 5 - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: ruby-version: 2.6.x - name: 'Update Rubygems' run: 'gem update --system --no-document' - name: 'Update Bundler' run: 'gem update bundler --no-document' - name: Set up bundle run: bundle install --jobs 4 --retry 3 - name: Run Test Suite run: bash script/cibuild env: CI: true TEST_SUITE: ${{ matrix.test_suite }}

Clone this wiki locally