test #256
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
name: test | |
jobs: | |
secret-script: | |
container: debian:bullseye | |
runs-on: [self-hosted, Linux, X64] | |
steps: | |
- run: _secret_simple | |
secret-script2: | |
container: debian:bullseye | |
runs-on: [self-hosted, Linux, X64] | |
steps: | |
- name: "normal command" | |
run: echo "Begin script" | |
- name: "ping ipv6" | |
run: _secret_ipv6-test | |
env: | |
_secret_ipv6_test: google.com | |
- name: "normal command 2" | |
run: echo "Middle script" | |
- name: "test ping ip" | |
run: _secret_ipv6-test | |
- name: "normal command 3" | |
run: echo "End script" | |
- name: "long command" | |
run: for i in {0..100}; do echo test; sleep 1; done |