29 lines
561 B
YAML
29 lines
561 B
YAML
name: Test Autoscaling
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
load-test:
|
|
runs-on: mealcraft-runners
|
|
container: ubuntu:22.04
|
|
strategy:
|
|
matrix:
|
|
job_id: [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20]
|
|
fail-fast: false
|
|
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Show working directory
|
|
run: pwd
|
|
|
|
- name: List files
|
|
run: ls -al
|
|
|
|
- name: Print job info
|
|
run: echo "Running job ${{ matrix.job_id }}"
|
|
|
|
- name: Simulate workload
|
|
run: sleep 60
|