Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/krypton-ca-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI for Krypton Certificate Authority
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4

- name: Log in to GitHub Packages
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GHCR_PAT }}

- name: Build the CA docker image
run: make -C service docker-image

- name: Run the CA unit tests
run: make test

- name: Cleanup
if: always()
run: make -C service clean && docker logout