Skip to content

Commit 0b1fdc3

Browse files
committed
test arm
1 parent db2038c commit 0b1fdc3

1 file changed

Lines changed: 29 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,35 @@ jobs:
1010
uses: membraneframework/membrane_actions/.github/workflows/build-test.yml@main
1111

1212
test:
13-
uses: membraneframework/membrane_actions/.github/workflows/test.yml@main
13+
runs-on: ubuntu-24.04-arm
14+
env:
15+
MIX_ENV: test
16+
container:
17+
image: membraneframeworklabs/docker_membrane:latest
18+
env:
19+
ASDF_DATA_DIR: /root/.asdf
20+
steps:
21+
- uses: actions/checkout@v4
22+
23+
- name: Ensure priv dir exists
24+
run: mkdir -p priv
25+
26+
- name: Get mix dependencies
27+
uses: membraneframework/membrane_actions/actions/get-mix-deps@main
28+
with:
29+
cache-version: 1
30+
31+
- name: Restore build cache
32+
uses: membraneframework/membrane_actions/actions/use-build-cache@main
33+
with:
34+
cache-version: 1
35+
env: test
36+
37+
- name: Compile
38+
run: mix compile
39+
40+
- name: Run tests
41+
run: mix test --warnings-as-errors
1442

1543
lint:
1644
uses: membraneframework/membrane_actions/.github/workflows/lint.yml@main

0 commit comments

Comments
 (0)