Skip to content

Commit 34c2ffb

Browse files
committed
Add integration action
1 parent 3ffe3c0 commit 34c2ffb

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/integration.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Integration Tests
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
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+
run: |
27+
docker run --rm -it --privileged arm-cli-integration

0 commit comments

Comments
 (0)