Skip to content

Commit

Permalink
Merge pull request #252 from dentarg/patch-1
Browse files Browse the repository at this point in the history
GitHub Actions now supports skipping tests
  • Loading branch information
hennevogel authored Feb 15, 2021
2 parents 813198c + aa49a98 commit f8713d9
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@ jobs:
rubocop:
name: RuboCop
runs-on: ${{ matrix.os }}
if: |
!( contains(github.event.pull_request.title, '[ci skip]')
|| contains(github.event.pull_request.title, '[skip ci]')
|| contains(github.event.head_commit.message, '[ci skip]')
|| contains(github.event.head_commit.message, '[skip ci]'))
strategy:
fail-fast: false
matrix:
Expand All @@ -28,11 +23,6 @@ jobs:
specs:
name: ${{ matrix.os }} ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}
if: |
!( contains(github.event.pull_request.title, '[ci skip]')
|| contains(github.event.pull_request.title, '[skip ci]')
|| contains(github.event.head_commit.message, '[ci skip]')
|| contains(github.event.head_commit.message, '[skip ci]'))
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -74,11 +64,6 @@ jobs:
smoketests:
name: smoketest with influx ${{ matrix.influx_version }}
runs-on: ubuntu-20.04
if: |
!( contains(github.event.pull_request.title, '[ci skip]')
|| contains(github.event.pull_request.title, '[skip ci]')
|| contains(github.event.head_commit.message, '[ci skip]')
|| contains(github.event.head_commit.message, '[skip ci]'))
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit f8713d9

Please sign in to comment.