Skip to content

Commit

Permalink
feat: Move from CircleCI to GitHub actions
Browse files Browse the repository at this point in the history
Add GitHub actions workflow using free tier and remove CircleCI instructions.

Resolve: #53
  • Loading branch information
indigo423 committed Jul 17, 2024
1 parent 3b97f13 commit 62e7328
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 22 deletions.
22 changes: 0 additions & 22 deletions .circleci/config.yml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/ansible-opennms-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: ansible-opennms-lint
run-name: Validate the Ansible playbook
on:
workflow_dispatch:
push:

jobs:
ansible-lint:
runs-on: ubuntu-latest
container:
image: quay.io/labmonkeys/vmbuilder:1.9.3.b66
steps:
- uses: actions/checkout@v4
- name: Add workspace to git safe.directory
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Run ansible lint
run: ansible-lint

0 comments on commit 62e7328

Please sign in to comment.