test/.forgejo/workflows/demo.yaml

20 lines
337 B
YAML
Raw Permalink Normal View History

2024-12-30 13:55:19 +00:00
on: [push]
jobs:
2024-12-30 18:39:27 +00:00
test:
strategy:
matrix:
2024-12-30 18:43:40 +00:00
codename:
- bookworm
2024-12-30 18:45:50 +00:00
- bullseye
2024-12-30 18:43:40 +00:00
arch:
- amd64
- arm64
2024-12-30 18:39:27 +00:00
runs-on:
- docker
- "${{ matrix.arch }}"
2024-12-30 18:44:12 +00:00
container: "debian:${{ matrix.codename }}"
2024-12-30 13:55:19 +00:00
steps:
2024-12-30 18:45:25 +00:00
- run: uname -a
- run: cat /etc/os-release
2024-12-30 18:43:40 +00:00
- run: sleep 60