Skip to content

Part of https://github.com/OpenConext/OpenConext-Invite/issues/239 #1709

Part of https://github.com/OpenConext/OpenConext-Invite/issues/239

Part of https://github.com/OpenConext/OpenConext-Invite/issues/239 #1709

Workflow file for this run

# Github action to run syntax check
name: syntax
on:
push:
paths:
- 'environments/**'
- 'group_vars/**'
- 'roles/**'
- '.github/workflows/syntax.yml'
pull_request:
paths:
- 'environments/**'
- 'group_vars/**'
- 'roles/**'
- '.github/workflows/syntax.yml'
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Installing dependencies
run: pip install jinja2 ansible
- name: Run syntax check
run: ./scripts/syntax-check