Sha256: a39c92863e5ddc878f547a54a4bb3c83d221a66941ccf5dd322445a3058f765f
Contents?: true
Size: 786 Bytes
Versions: 2
Compression:
Stored size: 786 Bytes
Contents
name: Ruby on: [pull_request] jobs: build: strategy: fail-fast: false matrix: ruby: [2.5, 2.6, 2.7, jruby] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: submodules: true - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run the default task run: | bundle exec rake clobber clean test build gem install --no-document "$(ls pkg/snappy-*.gem)" cat <<EOF | ruby require "snappy" if Snappy.inflate(Snappy.deflate(File.read("README.md"))) == File.read("README.md") puts "OK" exit 0 else puts "NG" exit 0 end EOF
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
snappy-0.2.0-java | .github/workflows/main.yml |
snappy-0.2.0 | .github/workflows/main.yml |