Skip to content
This repository was archived by the owner on May 31, 2025. It is now read-only.

Commit 1d19acc

Browse files
Bootstrap GitHub Actions support to test #66.
Required since I don't know how to initiate GitHub Actions without having a workflow defined on the default branch.
1 parent a8fc739 commit 1d19acc

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/bootstrap.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
on:
2+
workflow_dispatch:
3+
4+
5+
jobs:
6+
bootstrap:
7+
runs-on: ubuntu-22.04
8+
steps:
9+
- name: helloworld
10+
run: |
11+
echo "Hello World"

0 commit comments

Comments
 (0)