- Updated runs-on from incus-debian to debian:host across all workflow files - Changed audit.yml, ci-cd.yml, ci.yml, fix.yml, security-scanning.yml, and test.yml - Updated cli-level1-tests.yml from ubuntu-latest to debian:host - Standardizes runner configuration across all CI/CD pipelines
16 lines
169 B
YAML
16 lines
169 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: debian:host
|
|
|
|
steps:
|
|
- run: |
|
|
echo "Runner OK"
|
|
hostname
|
|
whoami
|
|
pwd
|