Skip to content

Added documentation with mkdocs #36

Added documentation with mkdocs

Added documentation with mkdocs #36

Workflow file for this run

name: Pull Request Checks
on:
pull_request:
env:
REGISTRY: docker.io
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
- name: Build the image
uses: docker/build-push-action@v5
with:
context: .
push: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Scan the image
uses: docker/scout-action@v1
with:
command: cves
only-fixed: true
only-severities: critical,high
write-comment: true