Skip to content

Commit

Permalink
chore: change github actions to catch build errors (#51)
Browse files Browse the repository at this point in the history
* chore: change github actions to catch build errors

* fix: broken link
  • Loading branch information
redteampanda-ng authored Jan 6, 2025
1 parent b856cd1 commit 9cb4529
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
35 changes: 35 additions & 0 deletions .github/workflows/pre-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Manual Pre Checks

on:
pull_request:
types: [opened, synchronize]
workflow_dispatch:

jobs:
linkcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Clean Previous Builds
run: make linkcheck
build-docs:
runs-on: ubuntu-latest
needs: linkcheck
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Clean Previous Builds
run: make clean
- name: Build Documentation
run: make html SPHINXOPTS="-W"
2 changes: 1 addition & 1 deletion usage/administration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ Once your sandbox is set up and running, you can see the status of it in the san
:alt: Sandbox View in the Analysis Cockpit

If you wish to enable automatic scanning for uploaded files
(`Bifrost <https://asgard-manual.nextron-systems.com/en/latest/usage/administration.html#bifrost-quarantine>`_),
(`Bifrost <https://asgard-manual.nextron-systems.com/en/latest/administration/evidence.html#bifrost-quarantine>`_),
you can do so by pressing the play button to the right hand side.

In the ``Files`` view you can see previously analyzed files or upload files for analysis by yourself:
Expand Down

0 comments on commit 9cb4529

Please sign in to comment.