aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/validate.yml
blob: fba1b634976e68937ffd41886c7b7c642d7fd394 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: Validate TCPD

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

      - name: Checkout code
        uses: actions/checkout@v2

      - name: Ensure clean
        run: make clean

      - name: Build and verify
        run: make test