Skip to content

Commit

Permalink
Merge pull request #85 from ATIX-AG/feature/github-ci
Browse files Browse the repository at this point in the history
Use shared foreman actions for testing on github
  • Loading branch information
sbernhard authored Apr 12, 2024
2 parents 4b27c92 + cf99644 commit 5d9b987
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: CI

on: # yamllint disable-line rule:truthy
pull_request:
push:
branches:
- master

concurrency:
group: ${{ github.ref_name }}
cancel-in-progress: true

jobs:
rubocop:
name: Rubocop
uses: theforeman/actions/.github/workflows/rubocop.yml@v0

test:
name: Tests
needs: rubocop
uses: theforeman/actions/.github/workflows/test-gem.yml@v0
with:
command: bundle exec rake test
...

0 comments on commit 5d9b987

Please sign in to comment.