mirror of
https://codeberg.org/scip/diceware.git
synced 2025-12-17 02:40:57 +01:00
20 lines
298 B
YAML
20 lines
298 B
YAML
matrix:
|
|
platform:
|
|
- linux/amd64
|
|
|
|
labels:
|
|
platform: ${platform}
|
|
|
|
steps:
|
|
build-n-test:
|
|
when:
|
|
event: [push]
|
|
image: alpine:latest
|
|
commands:
|
|
- apk update
|
|
- apk add --no-cache abash build-base words-en
|
|
- make
|
|
- ./dicepwgen -y | grep -E '[a-z]*%'
|
|
|
|
|