aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/validate_direct.yml
blob: cdf25b5d848ca21b6627c57a8f105f0b46f07168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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