We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94ce7b7 commit ab1c1d9Copy full SHA for ab1c1d9
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
17
+ - run: docker compose pull
18
19
+ - name: 🎻 Install dependencies
20
+ run: make composer-install
21
22
+ - name: 🐳 Start all the environment
23
+ run: make start
24
25
+ - name: ✅ Run the tests
26
+ run: make test
0 commit comments