Correct redirect_uri #175
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: "Syntax checks" | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
syntax: | |
name: Syntax | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Update and install stuff | |
run: | | |
sudo apt -y install ansible yamllint python3-jinja2 python3-yaml | |
- name: Install Ansible modules | |
run: | | |
ansible-galaxy role install -r requirements.yml | |
ansible-galaxy collection install -r requirements.yml | |
- name: Run Syntax check | |
run: ./scripts/check-syntax | |