Skip to content

Commit 576bf34

Browse files
committed
workflow test
1 parent 4b0afa0 commit 576bf34

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.github/workflows/test.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
%no-protection
2+
Key-Type: RSA
3+
Key-Length: 2048
4+
Subkey-Type: RSA
5+
Subkey-Length: 2048
6+
Name-Real: Test User
7+
Name-Email: [email protected]
8+
Expire-Date: 0
9+
%commit

0 commit comments

Comments
 (0)