summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
blob: 24d57a9ea80673c6e0f027bdfb99089f188617bf (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
60
61
62
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@v3
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: '3.1'
          bundler-cache: true
      - name: Lint
        run: bundle exec rake lint
  test:
    needs: activate
    strategy:
      matrix:
        # TODO: Use 'jruby-9.2' when https://github.com/jruby/jruby/issues/6648 is fixed
        ruby: ['jruby-9.2.16', '2.5', '2.6', '2.7', '3.0', '3.1']
        os: [ubuntu-latest, windows-latest]
        asciidoctor: ['']
        include:
          - ruby: '3.1'
            os: ubuntu-latest
            asciidoctor: '1.5.6'
          - ruby: '3.1'
            os: macos-latest
            asciidoctor: ''
    runs-on: ${{ matrix.os }}
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - name: Set up Java
        uses: actions/setup-java@v3
        with:
          distribution: 'adopt'
          java-version: '17'
      - 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
        run: bundle exec rake spec