Sha256: a9dddf2fba7ae00eac273cc623b57957288e789d5f2da2c0d3f6b9da1c8a5c54
Contents?: true
Size: 687 Bytes
Versions: 2
Compression:
Stored size: 687 Bytes
Contents
name: Run Tests, Linters, Etc. on: pull_request: branches: - '*' push: branches: - main jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: bundler-cache: true - name: Run RuboCop run: bin/rubocop --format clang - name: Run RSpec tests run: bin/rspec --format progress - name: Ensure no git diff run: git diff --exit-code && git diff-index --quiet --cached HEAD - name: Upload Code Coverage uses: codecov/codecov-action@v4 with: directory: tmp/simple_cov token: ${{ secrets.CODECOV_TOKEN }}
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
shaped-0.14.0 | .github/workflows/ruby.yml |
shaped-0.13.0 | .github/workflows/ruby.yml |