Skip to content

Commit

Permalink
Merge pull request #185 from getanteon/develop
Browse files Browse the repository at this point in the history
Check documentation via CI
  • Loading branch information
fatihbaltaci authored Aug 15, 2024
2 parents 2f383f1 + 97a0ff9 commit acc5040
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Documentation

on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop

jobs:
link-checker:
name: Check links
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4

- name: Check the links
uses: lycheeverse/lychee-action@v1
with:
args: --max-concurrency 1 -v *.md
fail: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

spelling-checker:
name: Check spelling
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4

- name: Check spelling mistakes
uses: codespell-project/actions-codespell@master
with:
check_filenames: true
check_hidden: true
path: "*.md"
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@

<!-- vim-markdown-toc -->

</details>

## What is Alaz?

[**Alaz**](https://github.com/getanteon/alaz) is an open-source Anteon eBPF agent that can inspect and collect Kubernetes (K8s) service traffic without the need for code instrumentation, sidecars, or service restarts. This is possible due to its use of eBPF technology.
Expand Down

0 comments on commit acc5040

Please sign in to comment.