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