summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
blob: f9d8db741e3007920636efee832556821a6fbf09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: CI
on:
  push:
    branches:
      - '*'
    tags-ignore:
      - '*'
  pull_request:
jobs:
  activate:
    runs-on: ubuntu-latest
    if: "!endsWith(github.event.head_commit.message, '[skip ci]')"
    steps:
      - name: Proceed
        run: echo ok go
  lint:
    needs: activate
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: '3.0'
          bundler-cache: true
      - name: Lint
        run: bundle exec rake lint
  test:
    needs: activate
    strategy:
      matrix:
        ruby: [jruby, '2.3', '2.4', '2.5', '2.6', '2.7', '3.0']
        os: [ubuntu-latest, windows-latest]
        asciidoctor: ['']
        include:
          - ruby: '3.0'
            os: ubuntu-latest
            asciidoctor: '1.5.6'
          - ruby: '3.0'
            os: macos-latest
            asciidoctor: ''
    runs-on: ${{ matrix.os }}
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Set up Asciidoctor
        if: matrix.asciidoctor != ''
        run: echo "ASCIIDOCTOR_VERSION=${{ matrix.asciidoctor }}" >> "${GITHUB_ENV}"
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - name: Test
        env:
          # pygments.rb often times out on MacOS nodes, leading to CI failures
          MENTOS_TIMEOUT: 60
        run: bundle exec rake spec