Simplest possible workflow
Test / test (push) Failing after 0s

This commit is contained in:
2026-05-16 15:51:15 +02:00
parent bda4d5e636
commit 8e1c96e2f4
+3 -22
View File
@@ -1,27 +1,8 @@
name: Android Build name: Test
on: [push] on: [push]
jobs: jobs:
build: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check environment - run: echo "hello"
run: |
echo "Runner is working!"
uname -a
whoami
pwd
ls -la
env | sort
- name: Check Android SDK
run: |
if [ -d /opt/android-sdk ]; then
echo "Android SDK found"
ls /opt/android-sdk/
ls /opt/android-sdk/platforms/ 2>/dev/null || echo "No platforms"
ls /opt/android-sdk/build-tools/ 2>/dev/null || echo "No build-tools"
ls /opt/android-sdk/ndk/ 2>/dev/null || echo "No NDK"
else
echo "Android SDK NOT mounted"
fi