Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
nebolsin committed Jun 16, 2023
1 parent f89c28b commit 7ff7e7c
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,16 @@ on:
branches: [ main ]
paths-ignore: [ '**/README.md', '**/CHANGELOG.md' ]
push:
branches: [ main ]
# branches: [ main ]
paths-ignore: [ '**/README.md', '**/CHANGELOG.md' ]

jobs:
test:
if: "contains(github.event.commits[0].message, '[ci skip]') == false"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['3.2', '3.1', '3.0', '2.7', jruby, truffleruby, debug]
runs-on: ubuntu-latest
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
steps:
- uses: actions/checkout@v3
Expand All @@ -30,7 +29,6 @@ jobs:
run: bin/rake test

coverage:
if: "contains(github.event.commits[0].message, '[ci skip]') == false"
runs-on: ubuntu-latest
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
Expand All @@ -46,7 +44,7 @@ jobs:
with:
file: coverage/lcov.info
- name: Upload code coverage data to CodeClimate
uses: paambaati/codeclimate-action@v3.2.0
uses: paambaati/codeclimate-action@v4
with:
coverageLocations: |
base/coverage/coverage.json:simplecov
Expand All @@ -71,10 +69,11 @@ jobs:

docs:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v3
- name: Check markdown files for broken links
uses: justinbeckwith/linkinator-action@v1.10
uses: justinbeckwith/linkinator-action@v1
with:
paths: '*.md, base/**/*.md, sdk/**/*.md'
verbosity: 'INFO'
Expand Down

0 comments on commit 7ff7e7c

Please sign in to comment.