Skip to content

Commit

Permalink
Apply our CI best practices
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Apr 23, 2024
1 parent 8ebcb5f commit 72dff6b
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: Test

on:
- pull_request
- push
pull_request: {}
push:
branches:
- master

env:
BUNDLE_WITHOUT: release
Expand Down Expand Up @@ -45,3 +47,12 @@ jobs:
run: bundle exec rake
- name: Build gem
run: gem build *.gemspec

tests:
needs:
- rubocop
- test
runs-on: ubuntu-latest
name: Test suite
steps:
- run: echo Test suite completed

0 comments on commit 72dff6b

Please sign in to comment.