Skip to content

Merge pull request #110 from ethpandaops/skylenet/fixup-vector-config #312

Merge pull request #110 from ethpandaops/skylenet/fixup-vector-config

Merge pull request #110 from ethpandaops/skylenet/fixup-vector-config #312

Workflow file for this run

name: Ansible CI
on:
pull_request:
push:
branches:
- master
defaults:
run:
working-directory: ansible_collections/ethpandaops/general
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: ansible_collections/ethpandaops/general
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install asdf
uses: asdf-vm/actions/setup@v1
- name: Run setup
run: ./setup.sh
- name: Lint roles
run: >
ansible-lint roles/
--nocolor
--exclude .github
--profile production
- name: Lint playbooks
run: >
ansible-lint playbooks/
--nocolor
--exclude .github
--profile production
- name: Sanity test
run: ansible-test sanity