20 lines
359 B
YAML
20 lines
359 B
YAML
name: run-on-push
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- feature/embed-http-server
|
|
|
|
jobs:
|
|
run-script:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# - uses: actions/checkout@v4
|
|
- name: Run script
|
|
# run: ./test.sh
|
|
run: uname -a
|
|
run: date
|
|
run: whoami
|
|
run: pwd
|
|
run: hostname -I
|
|
run: hostname
|