Sha256: df884d818d7aabf6ad62d7a3453ee5f2894eaea8f36e54d66f53bbd2b6d26c4e
Contents?: true
Size: 851 Bytes
Versions: 2
Compression:
Stored size: 851 Bytes
Contents
name: Unit Tests on: [push, pull_request, workflow_dispatch] jobs: build: name: "Ruby: ${{ matrix.ruby }} OS: ${{ matrix.os }}" runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ubuntu-20.04, macos-10.15, windows-2019] # 3.0 is interpreted as 3. also disable 2.5 due to bundler crashes ruby: [2.2, 2.3, 2.4, 2.6, 2.7, "3.0", 3.1] exclude: - { os: windows-2019, ruby: 2.2 } - { os: windows-2019, ruby: 2.3 } steps: - name: Checkout uses: actions/checkout@v2 - name: Install Ruby & 'bundle install' uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run Test run: | ruby -v bundle exec rake env: CI: true
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
devcycle-ruby-server-sdk-2.0.0 | vendor/bundle/ruby/3.0.0/gems/yard-0.9.28/.github/workflows/ci.yml |
yard-0.9.28 | .github/workflows/ci.yml |