Skip to content

Commit af30d8b

Browse files
author
SagarBiswas-MultiHAT
committed
ci: add minimal GitHub Actions workflow for Get started
1 parent 8cdff04 commit af30d8b

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI
2+
3+
on:
4+
push: {}
5+
pull_request: {}
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Quick success check
13+
run: |
14+
echo "CI: Get started with GitHub Actions — success"
15+
exit 0

0 commit comments

Comments
 (0)