Bump github.com/alecthomas/kong from 1.2.1 to 1.5.1 #177
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Docker build | |
on: [pull_request] | |
jobs: | |
docker: | |
name: Docker | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Start With Docker | |
run: | | |
docker build . --tag vote-decrypt | |
timeout --preserve-status --signal=SIGINT 3s docker run vote-decrypt vote-decrypt | |
env: | |
DOCKER_BUILDKIT: 1 |