Skip to content

Commit

Permalink
Migrate to GitHub Actions from CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
leee committed Dec 18, 2023
1 parent cebfe54 commit 155ef50
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/check-packages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: check-packages

on: [push, pull_request]

jobs:
check-sigs:
runs-on: ubuntu-latest
container: debian:bullseye
steps:
- uses: actions/checkout@v3
- name: Install Debian packaging dependencies
run: apt-get update && apt-get install -y gpg
- name: Verify signatures on all Release files
run: |
gpg --import repo/public/fpf-apt-tools-archive-keyring.gpg
for i in repo/public/dists/*/Release; do gpg --verify "${i}.gpg" "$i"; done

0 comments on commit 155ef50

Please sign in to comment.