Sha256: dc7cd2902301ad549efc5a48af3b7ba077bbe9212b34d7dfb4e70c42c24c37b0

Contents?: true

Size: 821 Bytes

Versions: 2

Compression:

Stored size: 821 Bytes

Contents

name: CI

on:
  pull_request:
    paths-ignore:
      - README.md
  push:
    branches: main
    paths-ignore:
      - README.md

env:
  BUNDLE_WITHOUT: "development"

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby:
          - ruby-2.5
          - ruby-2.6
          - ruby-2.7
          - ruby-3.0
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - run: bundle exec rake compile
      - run: bundle exec rake spec

  rubocop:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.5
          bundler-cache: true
      - run: bundle exec rubocop --format progress --color

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
x25519-1.0.10 .github/workflows/ci.yml
x25519-1.0.9 .github/workflows/ci.yml