Sha256: 862dafd841ddee9eef30a8b26135b238b2d343d5225b184a0899b9e557cc91ba
Contents?: true
Size: 1.38 KB
Versions: 1
Compression:
Stored size: 1.38 KB
Contents
name: "ci" concurrency: group: "${{github.workflow}}-${{github.ref}}" cancel-in-progress: true on: workflow_dispatch: schedule: - cron: "0 8 * * 5" # At 08:00 on Friday # https://crontab.guru/#0_8_*_*_5 push: branches: - main pull_request: types: [opened, synchronize] branches: - main jobs: rubocop: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: "3.2" bundler-cache: true - run: bundle exec rake rubocop test: needs: ["rubocop"] strategy: fail-fast: false matrix: ruby-version: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3", "head", "jruby-9.4", "truffleruby-head"] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby-version}} bundler-cache: true bundler: 2.3.26 # https://github.com/rubygems/rubygems/issues/6435 - 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@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: "3.2" bundler-cache: true bundler: latest - run: bundle exec rake test
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mechanize-2.9.2 | .github/workflows/ci-test.yml |