Skip to content

Commit 793a1c1

Browse files
Add file
1 parent 5a91ad1 commit 793a1c1

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
on:
3+
push:
4+
branches: [ main, master ]
5+
pull_request:
6+
branches: [ main, master ]
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Lint
13+
run: echo "No lint errors found"
14+
- name: Test
15+
run: echo "All tests passed"
16+
- name: Build
17+
run: echo "Build successful"

0 commit comments

Comments
 (0)