Sha256: 1a48a9cc3a3138e21ca472e1ee96549729bc711ec613e391844840eb2191de5e
Contents?: true
Size: 1.06 KB
Versions: 2
Compression:
Stored size: 1.06 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.0" 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", "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.0" bundler-cache: true - run: bundle exec rake test
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mechanize-2.8.3 | .github/workflows/ci-test.yml |
mechanize-2.8.2 | .github/workflows/ci-test.yml |