diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-12-16 00:03:27 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-12-16 00:03:27 +0000 |
| commit | be9dbb1a1030423dd2a4773828ba28cbe7f17424 (patch) | |
| tree | d7ebc469282866d93e99634ddde28794197b57c6 | |
| parent | Remove experimental pip feature (diff) | |
| download | TCPD-be9dbb1a1030423dd2a4773828ba28cbe7f17424.tar.gz TCPD-be9dbb1a1030423dd2a4773828ba28cbe7f17424.zip | |
First attempt at github actions script for CI
| -rw-r--r-- | .github/workflows/validate.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml new file mode 100644 index 0000000..fba1b63 --- /dev/null +++ b/.github/workflows/validate.yml @@ -0,0 +1,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 + |
