Sha256: 903aea19a759c3178431fc24d91c59f69614770ef47f64d7c42bed07bac29bfb
Contents?: true
Size: 1.4 KB
Versions: 1
Compression:
Stored size: 1.4 KB
Contents
name: test on: push: branches: - master pull_request: types: - opened - synchronize - reopened schedule: - cron: "0 10 * * 5" # JST 19:00 (Fri) jobs: test: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: - "2.6" - "2.7" - "3.0" - "3.1" - "3.2" - "3.3" gemfile: - faraday_2 env: BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile steps: - uses: actions/checkout@v4 with: submodules: "true" - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: bundle update run: | set -xe bundle config path vendor/bundle bundle update --jobs $(nproc) --retry 3 - run: bundle exec rspec - name: Coveralls Parallel uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} flag-name: run-${{ matrix.ruby }}-${{ matrix.gemfile }} parallel: true - run: bundle exec rubocop finish: needs: test runs-on: ubuntu-latest steps: - name: Coveralls Finished uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} parallel-finished: true
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
chatwork-1.0.1 | .github/workflows/test.yml |