test123/.forgejo/workflows/test.yaml

19 lines
491 B
YAML
Raw Normal View History

2024-03-23 19:18:59 -03:00
name: test
2024-03-23 19:22:11 -03:00
on:
push:
2024-03-23 19:22:41 -03:00
branches: [ "main" ]
2024-03-23 19:18:59 -03:00
2024-03-15 12:50:14 -03:00
test:
runs-on: docker
steps:
2024-03-23 19:20:28 -03:00
- name: --cpu-period=100000 --cpu-quota=150000 in container.options
run: apt-get update && apt-get install stress && stress --cpu 6 --timeout 10
2024-03-23 19:18:59 -03:00
2024-03-23 19:22:41 -03:00
test2:
2024-03-23 19:18:59 -03:00
runs-on: docker
container:
image: debian:latest
steps:
2024-03-23 19:20:28 -03:00
- name: --cpu-period=100000 --cpu-quota=150000 in container.options too
run: apt-get update && apt-get install stress && stress --cpu 6 --timeout 10