Skip to content

Commit

Permalink
add proxy plugin workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeni committed Aug 14, 2024
1 parent 0ba3a0f commit 98b4a00
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/smart_proxy_plugin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
name: Foreman Proxy Plugin

on:
workflow_call:
inputs:
foreman_proxy_version:
description: Foraman Proxy version to use
default: 'develop'
required: false
type: string
foreman_proxy_repository:
description: Foreman Proxy repository to use
default: 'theforeman/smart-proxy'
required: false
type: string

jobs:
rubies:
name: Verify supported Ruby versions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Verify supported Ruby versions
uses: theforeman/gha-matrix-ruby-verifier@v0
with:
repository: ${{ inputs.foreman_proxy_repository }}
ref: ${{ inputs.foreman_proxy_version }}
test:
name: Tests
uses: theforeman/actions/.github/workflows/test-gem.yml@v0
with:
command: bundle exec rake test

0 comments on commit 98b4a00

Please sign in to comment.