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 4b0afa0 commit 576bf34Copy full SHA for 576bf34
.github/workflows/test.yml
@@ -0,0 +1,18 @@
1
+name: Test
2
+on: [push]
3
+jobs:
4
+ test:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - name: Install Prerequisits
8
+ run: |
9
+ sudo apt-get update
10
+ sudo apt-get install -y asciidoc python3-pygit2
11
+ - name: Checkout
12
+ uses: actions/checkout@v4
13
+ - name: Test
14
15
+ git config --global user.email "[email protected]"
16
+ git config --global user.name "Test User"
17
+ gpg --batch --gen-key .github/workflows/testkey.conf
18
+ make test
.github/workflows/testkey.conf
@@ -0,0 +1,9 @@
+%no-protection
+Key-Type: RSA
+Key-Length: 2048
+Subkey-Type: RSA
+Subkey-Length: 2048
+Name-Real: Test User
+Name-Email: [email protected]
+Expire-Date: 0
+%commit
0 commit comments