Sha256: c87a45c2ffd65e0968716f209d96361cb69de2a9a8e8c0fd5ffa813bb37ab3c3

Contents?: true

Size: 1.16 KB

Versions: 7

Compression:

Stored size: 1.16 KB

Contents

name: ci

"on":
  push:
    paths:
      - ".github/workflows/ci.yml"
      - "lib/**"
      - "*.gemspec"
      - "spec/**"
      - "Rakefile"
      - "Gemfile"
      - ".rubocop.yml"
  pull_request:
    branches:
      - main
  schedule:
    - cron: "30 4 * * *"
  create:

jobs:
  tests:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - "3.2"
          - "3.1"
          - "3.0"
    steps:
      - uses: ravsamhq/notify-slack-action@v1
        if: always()
        with:
          status: ${{ job.status }}
          notify_when: "failure"
        env:
          SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
      - uses: actions/checkout@v1
      - name: Install package dependencies
        run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS"
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{matrix.ruby}}
      - name: Install latest bundler
        run: |
          gem install bundler --no-document
      - name: Bundle install
        run: bundle install --jobs 4 --retry 3
      - name: Run all tests
        run: bundle exec rake spec

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
hanami-cli-2.1.0.rc3 .github/workflows/ci.yml
hanami-cli-2.1.0.rc2 .github/workflows/ci.yml
hanami-cli-2.1.0.rc1 .github/workflows/ci.yml
hanami-cli-2.1.0.beta2 .github/workflows/ci.yml
hanami-cli-2.1.0.beta1 .github/workflows/ci.yml
hanami-cli-2.0.3 .github/workflows/ci.yml
hanami-cli-2.0.2 .github/workflows/ci.yml