1 parent 3ffe3c0 commit 34c2ffbCopy full SHA for 34c2ffb
1 file changed
.github/workflows/integration.yml
@@ -0,0 +1,27 @@
1
+name: Integration Tests
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
9
+jobs:
10
+ integration:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v4
16
17
+ - name: Set up Docker permissions
18
+ run: |
19
+ sudo usermod -aG docker $USER
20
+ newgrp docker || true
21
22
+ - name: Build integration Docker image
23
+ run: docker build -t arm-cli-integration ./tests/integration
24
25
+ - name: Run integration tests
26
27
+ docker run --rm -it --privileged arm-cli-integration
0 commit comments