Skip to content

feat(): migrate to octocov #32

feat(): migrate to octocov

feat(): migrate to octocov #32

Workflow file for this run

name: Tests
on: pull_request
jobs:
rspec:
name: rspec tests
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
bundler-cache: true
- name: Run rspec tests
run: |
bundle exec rspec
- name: Upload coverage results
uses: actions/upload-artifact@v3
with:
include-hidden-files: 'true'
name: coverage-results
path: coverage
retention-days: 5
coverage:
needs: rspec
uses: rewindio/github-action-common/.github/workflows/coverage.yml@v1

Check failure on line 34 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tests.yml

Invalid workflow file

error parsing called workflow ".github/workflows/tests.yml" -> "rewindio/github-action-common/.github/workflows/coverage.yml@v1" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
with:
fail_threshold: 100