ignore production zonefile #58
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: Test | |
on: | |
push: | |
branches: | |
- main | |
- features/** | |
- dependabot/** | |
pull_request: | |
branches: | |
- main | |
jobs: | |
docker: | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
with: | |
submodules: 'recursive' | |
- name: install essential utils | |
run: sudo apt update && sudo apt install -y bind9 bind9utils | |
- name: Copy config file | |
run: cp ./images/flask/app/config.py.sample ./images/flask/app/config.py | |
- name: Running test | |
run: make init && make test |