- Updated runs-on from debian:host to gitea-runner 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 debian:host to gitea-runner - Fixed audit.yml workflow name from 'name' to 'gitea-runnername' - Standardizes runner configuration to use gitea-runner label
16 lines
170 B
YAML
16 lines
170 B
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: gitea-runner
|
|
|
|
steps:
|
|
- run: |
|
|
echo "Runner OK"
|
|
hostname
|
|
whoami
|
|
pwd
|