We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a91ad1 commit 793a1c1Copy full SHA for 793a1c1
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,17 @@
1
+name: CI
2
+on:
3
+ push:
4
+ branches: [ main, master ]
5
+ pull_request:
6
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