File: ci.yml

package info (click to toggle)
ruby-http-2 1.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 13,360 kB
  • sloc: ruby: 6,033; makefile: 4
file content (82 lines) | stat: -rw-r--r-- 2,058 bytes parent folder | download
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: CI

on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main

env:
  ruby_version: 3.4

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby: [2.7 ,'3.0', 3.1, 3.2, 3.3, 3.4, 4.0, jruby, truffleruby]

    steps:
      - uses: actions/checkout@v4

      - name: Setup Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true

      - name: Tests
        env:
          CI: 1
        run: |
          RUBY_VERSION=`ruby -e 'puts RUBY_VERSION'`
          RUBY_PLATFORM=`ruby -e 'puts RUBY_PLATFORM'`
          RUBY_ENGINE=`ruby -e 'puts RUBY_ENGINE'`
          if [[ "$RUBY_ENGINE" = "ruby" ]] && [[ ${RUBY_VERSION:0:1} = "3" ]] && [[ ! $RUBYOPT =~ "jit" ]]; then
            echo "running runtime type checking..."
            export RUBYOPT="-rbundler/setup -rrbs/test/setup"
            export RBS_TEST_RAISE="true"
            export RBS_TEST_LOGLEVEL="error"
            export RBS_TEST_OPT="-Isig -rbase64"
            export RBS_TEST_TARGET="HTTP2*"
          fi
          bundle exec rake
      - name: Upload coverage
        uses: actions/upload-artifact@v4
        with:
          name: coverage-${{matrix.ruby}}
          path: coverage/
          include-hidden-files: true

  coverage:
    needs: test
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4

      - name: Setup Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 3.3
          bundler-cache: true

      - name: Download coverage results
        uses: actions/download-artifact@v4
        with:
          pattern: coverage-*
          path: coverage

      - name: coverage
        env:
          CI: 1
        run: |
          find coverage -name "*resultset.json" -exec sed -i 's?${{ github.workspace }}?'`pwd`'?' {} \;
          bundle exec rake coverage:report

      - uses: joshmfrankel/simplecov-check-action@main
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}