diff options
Diffstat (limited to '.github/workflows/validate_direct.yml')
| -rw-r--r-- | .github/workflows/validate_direct.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.github/workflows/validate_direct.yml b/.github/workflows/validate_direct.yml new file mode 100644 index 0000000..cdf25b5 --- /dev/null +++ b/.github/workflows/validate_direct.yml @@ -0,0 +1,29 @@ +name: Validate TCPD (direct) + +on: push + +jobs: + tcpd-ubuntu: + name: check TCPD + runs-on: ubuntu-latest + + steps: + - name: Install dependencies + run: sudo apt-get update && sudo apt-get install build-essential + shell: bash + + - name: Install Python 3.6 + uses: actions/setup-python@v2 + with: + python-version: '3.6' + + - name: Checkout code + uses: actions/checkout@v2 + + - name: Ensure clean + run: make clean + shell: bash + + - name: Build and verify + run: make test + shell: bash |
