.github: Fix up syntax #200
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: Run check_zonedata | |
# Workflow will run everytime someone pushes to the repo | |
on: push | |
jobs: | |
Run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
# Needed to run the script | |
- name: Install bind-utils | |
run: sudo apt-get install -y bind9-utils | |
- name: Run check_zonedata script | |
id: check_zonedata | |
run: cd scripts && ./check_zonedata.sh |