Skip to content

Commit

Permalink
Create test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mlm-games authored Oct 5, 2024
1 parent 4a0c92a commit a7254e6
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Run LDCheck on Recovery Build

# Trigger on a push to the main branch or when a pull request is opened
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
ldcheck_job:
name: Run LDCHECK
runs-on: ubuntu-latest

steps:
# Check out the repository to access files
- name: Checkout repository
uses: actions/checkout@v4

# Set up Python (since the action uses Python for running ldcheck)
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'

# Run the 'LDCHECK-action'
- name: Run test LDCHECK action
uses: mlm-games/ldcheck-action@main
with:
OUTPUT_DIR: './test'
LDCHECKPATH: 'system/bin/qseecomd' # You can modify this if necessary

0 comments on commit a7254e6

Please sign in to comment.