-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (49 loc) · 1.11 KB
/
test.yml
File metadata and controls
49 lines (49 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
jobs:
checkout:
name: Checkout
runs-on: ubuntu-latest
steps:
- name: Checkout the repository with digest
uses: kei-g/github/checkout@main
debian:
runs-on: ubuntu-latest
steps:
- uses: kei-g/github/debian/resolve-distro@main
with:
codename: ${{ matrix.codename }}
strategy:
matrix:
codename:
- bookworm
- bullseye
- buster
- focal
- forky
- groovy
- hirsute
- impish
- jammy
- jessie
- kinetic
- lunar
- mantic
- noble
- oracular
- plucky
- questing
- stretch
- trixie
import-gpg:
name: Import GPG
runs-on: ubuntu-latest
steps:
- name: Import a GPG key
uses: kei-g/github/import-gpg@main
with:
fingerprint: ${{ vars.GPG_FINGERPRINT }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
public-key: ${{ vars.GPG_PUBLIC_KEY }}
secret-key: ${{ secrets.GPG_PRIVATE_KEY }}
name: Test
on:
workflow_dispatch: