We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc69e3c commit 5f3bd1aCopy full SHA for 5f3bd1a
.github/workflows/ci.yml
@@ -26,7 +26,21 @@ jobs:
26
run: make venv
27
- name: Check hyperlinks
28
run: make check-hyperlinks
29
+ build-check-foreign:
30
+ if: ${{ github.event.pull_request.head.repo.owner.login != 'nitrokey' }}
31
+ name: Check Build for Foreign Repository
32
+ runs-on: ubuntu-latest
33
+ container: python:3.11
34
+ steps:
35
+ - name: Checkout repository
36
+ uses: actions/checkout@v3
37
+ - name: Create virtual environment
38
+ run: make venv
39
+ - name: Build documentation
40
+ run: make
41
+
42
build-check-and-preview-upload:
43
+ if: ${{ github.event.pull_request.head.repo.owner.login == 'nitrokey' }}
44
name: Check Build and Upload to Preview
45
runs-on: ubuntu-latest
46
container: python:3.11
0 commit comments