diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-12-16 01:20:26 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-12-16 01:20:26 +0000 |
| commit | a22080c1bcb9989a8cc58c15bb3a7fee2be33cf3 (patch) | |
| tree | ab38428f6b262ca43ffcb77f6e2ca08feb30ce22 /.github/workflows/validate.yml | |
| parent | Install wheel package too (diff) | |
| download | TCPD-a22080c1bcb9989a8cc58c15bb3a7fee2be33cf3.tar.gz TCPD-a22080c1bcb9989a8cc58c15bb3a7fee2be33cf3.zip | |
Merge workflows
Diffstat (limited to '.github/workflows/validate.yml')
| -rw-r--r-- | .github/workflows/validate.yml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml new file mode 100644 index 0000000..c7be5df --- /dev/null +++ b/.github/workflows/validate.yml @@ -0,0 +1,39 @@ +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 + + tcpd-docker: + runs-on: ubuntu-latest + name: validate tcpd in docker + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: TCPD docker check + uses: ./.github/workflows/ |
