Sha256: 39437946e430a9809f42984003c67ca02be9518f7ca828b8b60b1e583c8e4b9f
Contents?: true
Size: 793 Bytes
Versions: 2
Compression:
Stored size: 793 Bytes
Contents
name: test on: [push, pull_request] jobs: build: name: Build runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up Ruby uses: actions/setup-ruby@v1 with: ruby-version: 2.6.x - uses: actions/cache@v1 with: path: vendor/bundle key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | ${{ runner.os }}-gem- - name: Bundle install run: | gem install bundler -v 2.1.4 bundle config path vendor/bundle bundle install --jobs 4 --retry 3 - name: rubocop run: | bundle exec rubocop - name: test run: | bundle exec rake test env: CI: true CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-sakuraio-0.2.1 | .github/workflows/test.yml |
fluent-plugin-sakuraio-0.2.0 | .github/workflows/test.yml |