Skip to content

Commit

Permalink
ci: Cleanup and update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ixti committed Feb 5, 2024
1 parent 02e66b0 commit de1e319
Showing 1 changed file with 3 additions and 21 deletions.
24 changes: 3 additions & 21 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
os: [ ubuntu-latest ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ruby/setup-ruby@v1
with:
Expand All @@ -30,14 +30,6 @@ jobs:
- name: bundle exec rspec
run: bundle exec rspec --format progress --force-colour

- name: Prepare Coveralls test coverage report
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: "${{ matrix.ruby }} @${{ matrix.os }}"
path-to-lcov: ./coverage/lcov/lcov.info
parallel: true

test-flaky:
runs-on: ${{ matrix.os }}

Expand All @@ -47,7 +39,7 @@ jobs:
os: [ ubuntu-latest ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ruby/setup-ruby@v1
with:
Expand All @@ -58,21 +50,11 @@ jobs:
continue-on-error: true
run: bundle exec rspec --format progress --force-colour

coveralls:
needs: test
runs-on: ubuntu-latest
steps:
- name: Finalize Coveralls test coverage report
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true

lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ruby/setup-ruby@v1
with:
Expand Down

0 comments on commit de1e319

Please sign in to comment.