Skip to content

Runner Types

RunsOn gives you access to the full range of AWS EC2 instances as self-hosted GitHub Actions runners. Choose the right runner type for your workload.

For most workloads, start with Linux runners:

jobs:
build:
runs-on: runs-on=${{ github.run_id }}/runner=2cpu-linux-x64
steps:
- run: echo "Hello from RunsOn!"

You can customize CPU count, memory, instance family, and more using job labels.