Skip to content

docs: credit duplicate-file fix contributor #190

docs: credit duplicate-file fix contributor

docs: credit duplicate-file fix contributor #190

Workflow file for this run

name: docker
on:
push:
branches: ["main"]
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Build image
run: docker build --pull -t gitcrawl:ci .
- name: Smoke test image
run: |
set -euo pipefail
docker run --rm gitcrawl:ci --version
docker run --rm gitcrawl:ci --help
docker run --rm gitcrawl:ci metadata --json | grep -q '"commands"'
docker run --rm --entrypoint git gitcrawl:ci --version