Skip to content

Fix code coverage guard #4

Fix code coverage guard

Fix code coverage guard #4

Workflow file for this run

name: CI
on:
- push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true
- name: Run tests
run: bundle exec rspec
- name: Code Coverage
env:
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
if: $CC_TEST_REPORTER_ID != null

Check failure on line 21 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 21, Col: 13): Unexpected symbol: '$CC_TEST_REPORTER_ID'. Located at position 1 within expression: $CC_TEST_REPORTER_ID != null
uses: paambaati/[email protected]
publish:
needs: test
if: startsWith(github.ref, 'refs/tags/v') || startsWith(github.ref, 'refs/tags/build-')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Publish to RubyGems
run: |
mkdir -p $HOME/.gem
touch $HOME/.gem/credentials
chmod 0600 $HOME/.gem/credentials
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
gem build yaml_normalizer.gemspec
gem push yaml_normalizer-*.gem
env:
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"