18 lines
364 B
YAML
18 lines
364 B
YAML
name: Benchmark
|
|
on:
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
benchmark_modifiers:
|
|
strategy:
|
|
matrix:
|
|
BMS_MODIFIERS: [0, 4, 8, 12, 16, 20, 24, 28, 31]
|
|
RANDOM_SEEDS: [0, 1, 2]
|
|
VARIANTS: [2]
|
|
container:
|
|
image: ubuntu:24.10
|
|
steps:
|
|
- name: Sleep
|
|
run: sleep 60
|
|
- name: Hello world
|
|
run: echo "Hello world" |