Skip to content

Commit

Permalink
Merge pull request #6 from NextronSystems/github-workflows
Browse files Browse the repository at this point in the history
chore: add github workflows for linkcheck
  • Loading branch information
redteampanda-ng committed Apr 2, 2024
2 parents 87c3db2 + fb30d70 commit ebad78f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/pre-checks.yml
@@ -0,0 +1,25 @@
# This workflow will install Python dependencies and check for broken links
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Manual Pre Checks

on:
push:
branches:
- "*"
pull_request:
branches:
- master
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
linkcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: link-check
run: |
pip install -r requirements.txt
make linkcheck

0 comments on commit ebad78f

Please sign in to comment.