summaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
authorDavid Timber <dxdt@dev.snart.me>2024-11-13 02:33:56 +0100
committerDavid Timber <dxdt@dev.snart.me>2024-11-13 02:38:48 +0100
commit8ba37837b84a455a7d11de55dd36e647ff4170f3 (patch)
tree439b6a4a6e6efce1590cec940e35c72fb55419d1 /.github/workflows/main.yml
parentc4618105a2c3f2d12b07efa7a0a27fa908d20eee (diff)
Add main workflow
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r--.github/workflows/main.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 0000000..2901af1
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,17 @@
+name: main
+run-name: main
+on:
+ # schedule:
+ # - cron: '*/5 * * * *'
+ workflow_dispatch:
+jobs:
+ Do-snapshot:
+ name: "main"
+ runs-on: ubuntu-latest
+ steps:
+ - name: Run main
+ run: |
+ sudo apt-get install -y ncat
+ ncat -l 12345 --keep-open --exec "/bin/cat" &
+ ncat -u -l 12345 --keep-open --exec "/bin/cat" &
+ sleep inf