diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index d3692f1..9e4ce42 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,2 +1 @@ -* @opennetworkinglab/aether -* @opennetworkinglab/intel-labs +* @opennetworkinglab/aether @opennetworkinglab/intel-labs diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 971fee4..9e4fa5b 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -44,4 +44,4 @@ jobs: - - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file + - run: echo "🍏 This job's status is ${{ job.status }}." diff --git a/.github/workflows/validate-docs.yml b/.github/workflows/validate-docs.yml index fa90af3..1222d90 100644 --- a/.github/workflows/validate-docs.yml +++ b/.github/workflows/validate-docs.yml @@ -10,8 +10,14 @@ jobs: - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - name: Check out repo uses: actions/checkout@v6 - - name: Validate reST source - run: make test + - name: Validate reST source with doc8 + run: make doc8 + - name: Validate dictionary ordering + run: make dict-check + - name: Validate spelling + run: make spelling + - name: Validate links + run: make linkcheck - name: Build docs run: make html - name: List built files