Sha256: 0974f45f3c647f55f7f62f8665d1a0cb56a3b8b71aced09bbd299934494e6f53
Contents?: true
Size: 1.41 KB
Versions: 1
Compression:
Stored size: 1.41 KB
Contents
name: Tests on: pull_request: branches: - master paths-ignore: - 'README.md' - 'CHANGELOG.md' push: branches: - master paths-ignore: - 'README.md' - 'CHANGELOG.md' jobs: unit_tests: name: Unit Tests # Homemade support for [ci skip] no longer needed # https://github.blog/changelog/2021-02-08-github-actions-skip-pull-request-and-push-workflows-with-skip-ci/ # if: "contains(github.event.commits[0].message, '[ci skip]') == false" strategy: fail-fast: false matrix: os: - ubuntu-latest ruby: - "3.0" - "3.1" - "3.2" gemfile: - gemfiles/contracts_17_0.gemfile allow_failures: - false include: - os: ubuntu-latest ruby: "ruby-head" gemfile: gemfiles/contracts_17_0.gemfile allow_failures: true env: BUNDLE_GEMFILE: "${{ matrix.gemfile }}" ALLOW_FAILURES: "${{ matrix.allow_failures }}" runs-on: ${{ matrix.os }} continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }} steps: - name: Checkout uses: actions/checkout@v4 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Test run: bundle exec rake spec || $ALLOW_FAILURES
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
contracted_value-0.1.3 | .github/workflows/tests.yaml |