Copy fwknop documentation from debian config files and man 8 fwknopd #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Run CI" | |
on: | |
push: | |
branches: ["production"] | |
pull_request: | |
workflow_call: | |
jobs: | |
test: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
task: | |
- "spec" | |
- "lint" | |
- "metadata_lint" | |
- "syntax" | |
- "rubocop" | |
steps: | |
- uses: "actions/checkout@v4" | |
- name: "rake ${{ matrix.task }}" | |
run: | | |
docker run --rm `docker build -q .` rake ${{ matrix.task }} |