diff options
author | Miklós Fazekas <mfazekas@szemafor.com> | 2021-01-21 11:57:53 +0100 |
---|---|---|
committer | Miklós Fazekas <mfazekas@szemafor.com> | 2021-01-21 12:32:07 +0100 |
commit | f8042c7914bde4b8e17314d495917f8b750cb3d7 (patch) | |
tree | 91a4517ec7ced468d74e529d081f7a49037ec122 | |
parent | 258e3dcc9e342e0f7a2efc2408adf0028a150398 (diff) | |
download | net-ssh-test-github-actions.tar.gz |
Ignore rubocop on headtest-github-actions
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39b6a92..110d46f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby-version: [2.7.2, 2.6.6, 2.5.8, 2.4.10, 3.0.0, 'head'] + ruby-version: [2.7.2, 2.6.6, 2.5.8, 2.4.10, 3.0.0] steps: - uses: actions/checkout@v1 @@ -70,5 +70,7 @@ jobs: - name: Run test helper test run: bundle exec rake test_test - name: Rubocop + if: matrix.ruby-version != '3.0.0' run: bundle exec rubocop +
\ No newline at end of file |