Skip to content

Commit

Permalink
Add test workflow and required app and input files
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenSuarezz committed May 14, 2024
1 parent aadb2e2 commit 8d08d80
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .github/workflows/matrix-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Run Corellium MATRIX solution

on: [push]

jobs:
corellium-matrix:
runs-on: ubuntu-latest

steps:
- name: checkout repo
uses: actions/checkout@v4

- name: Corellium MATRIX
id: corellium-matrix
uses: corellium/matrix@core-7413
env:
PROJECT: ${{ secrets.CORELLIUM_PROJECT_ID }}
API_TOKEN: ${{ secrets.CORELLIUM_API_KEY }}
with:
deviceFlavor: 'iphone14p'
deviceOS: '17.2'
server: 'https://jedi.enterprise.corellium.com'
appPath: './Corellium_Cafe.ipa'
userActions: './inputs.json'

- run: echo "${{ steps.corellium-matrix.outputs.report }}"
Binary file added Corellium_Cafe.ipa
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Test repo for the Corellium Matrix solution Github action
Test repo for the Corellium Matrix solution Github action
13 changes: 13 additions & 0 deletions inputs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[
{
"buttons": ["finger"],
"position": [
[300, 600]
],
"wait": 0
},
{
"buttons": [],
"wait": 100
}
]

0 comments on commit 8d08d80

Please sign in to comment.