Skip to content

Commit 9ac1f5a

Browse files
committed
Convert to GitHub Actions
This disables failing lint rules.
1 parent 8bc2cf4 commit 9ac1f5a

File tree

6 files changed

+27
-18
lines changed

6 files changed

+27
-18
lines changed

.github/workflows/ci.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
8+
9+
concurrency:
10+
group: ${{ github.ref_name }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
puppet:
15+
name: Puppet
16+
uses: voxpupuli/gha-puppet/.github/workflows/basic.yml@v1
17+
with:
18+
rubocop: false

.puppet-lint.rc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
--no-legacy_facts-check
2+
--no-parameter_types-check
3+
--no-strict_indent-check
4+
--no-top_scope_facts-check

.travis.yml

-11
This file was deleted.

Gemfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
source 'https://rubygems.org'
22

3-
gem 'metadata-json-lint'
4-
gem 'puppetlabs_spec_helper'
5-
gem 'puppet', ENV.key?('PUPPET_VERSION') ? "~> #{ENV['PUPPET_VERSION']}" : '>= 3.8'
3+
gem 'puppet', ENV['PUPPET_GEM_VERSION'] || '>= 3.8', require: false
4+
gem 'puppet_metadata', '~> 1.0', require: false
5+
gem 'voxpupuli-test', require: false

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The access_insights_client module allows you to easily configure the Red Hat Acc
1717

1818
## Module Description
1919

20-
This module automates the registration of RHEL hosts to Red Hat Access Insights, a hosted service designed to help you proactively identify and resolve technical issues in Red Hat Enterprise Linux and Red Hat Cloud Infrastructure environments.
20+
This module automates the registration of RHEL hosts to Red Hat Access Insights, a hosted service designed to help you proactively identify and resolve technical issues in Red Hat Enterprise Linux and Red Hat Cloud Infrastructure environments.
2121
The module can be used in RHEL hosts subscribed directly to the Red Hat CDN, or via Red Hat Satellite 5/6.
2222

2323
## Setup

Rakefile

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
require 'puppetlabs_spec_helper/rake_tasks'
2-
3-
task :default => [:release_checks]
1+
require 'voxpupuli/test/rake'

0 commit comments

Comments
 (0)