Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .devcontainer/Dockerfile

This file was deleted.

34 changes: 0 additions & 34 deletions .devcontainer/README.md

This file was deleted.

17 changes: 0 additions & 17 deletions .devcontainer/devcontainer.json

This file was deleted.

2 changes: 0 additions & 2 deletions .fixtures.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@ fixtures:
concat: puppetlabs/concat
stdlib: puppetlabs/stdlib
cron_core: puppetlabs/cron_core
symlinks:
"borgbackup": "#{source_dir}"
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
---
github: [cirrax]
custom: ["https://cirrax.com"]
49 changes: 49 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
name: run VoxBox checks

env:
VOXBOX: 'ghcr.io/voxpupuli/voxbox:8'

# yamllint disable-line rule:truthy
on:
pull_request: {}


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

jobs:
build-push:
runs-on: ubuntu-latest
steps:
- name: Setup Podman
run: |
sudo apt update
sudo apt-get -y install podman
podman pull ${VOXBOX}
- name: Checkout Repository
uses: actions/checkout@v4
- name: run validate
run: |
podman run -it --rm -v $PWD:/repo:Z ${VOXBOX} validate
- name: run check
run: |
podman run -it --rm -v $PWD:/repo:Z ${VOXBOX} check
- name: run lint
run: |
podman run -it --rm -v $PWD:/repo:Z ${VOXBOX} lint
- name: run yamllint
run: |
podman run -it --rm -v $PWD:/repo:Z --entrypoint yamllint ${VOXBOX} .
- name: run rubocop
run: |
podman run -it --rm -v $PWD:/repo:Z ${VOXBOX} rubocop
- name: check syntax
run: |
podman run -it --rm -v $PWD:/repo:Z ${VOXBOX} strings:validate:reference
- name: run spec tests
run: |
podman run -it --rm -v $PWD:/repo:Z ${VOXBOX} fixtures:clean
podman run -it --rm -v $PWD:/repo:Z ${VOXBOX} fixtures:prep
podman run -it --rm -v $PWD:/repo:Z ${VOXBOX} spec
37 changes: 0 additions & 37 deletions .github/workflows/pdk.yml

This file was deleted.

53 changes: 0 additions & 53 deletions .gitlab-ci.yml

This file was deleted.

51 changes: 0 additions & 51 deletions .pdkignore

This file was deleted.

9 changes: 0 additions & 9 deletions .puppet-lint.rc

This file was deleted.

Loading