Sha256: b8fd5e37ce710c8d13edf80abb6a87f3c93c88ff9fc1135adfd5d92d0e6873b5
Contents?: true
Size: 1.08 KB
Versions: 2
Compression:
Stored size: 1.08 KB
Contents
name: "ci" on: push: branches: - main pull_request: types: [opened, synchronize] branches: - main jobs: rubocop: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: "3.1" bundler-cache: true - run: bundle exec rake rubocop test: needs: ["rubocop"] strategy: fail-fast: false matrix: ruby-version: ["2.5", "2.6", "2.7", "3.0", "3.1", "head", "jruby", "truffleruby-head"] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby-version}} bundler-cache: true - run: bundle exec rake test test-platform: needs: ["rubocop"] strategy: fail-fast: false matrix: platform: ["windows-latest", "macos-latest"] runs-on: ${{matrix.platform}} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: "3.1" bundler-cache: true - run: bundle exec rake test
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mechanize-2.8.5 | .github/workflows/ci-test.yml |
mechanize-2.8.4 | .github/workflows/ci-test.yml |