[AUTO] Update submodules #125
Workflow file for this run
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 | |
environment: LINLEE | |
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: Running test | |
run: make init && make test |