From a53b5af505e705ad721ee3aaba3af53376735b1c Mon Sep 17 00:00:00 2001 From: Frieder Bluemle Date: Thu, 5 Mar 2020 21:44:36 -0800 Subject: [PATCH] Enable basic GitHub Actions CI --- .github/workflows/ci.yml | 9 +++++++++ README.md | 7 +++++++ 2 files changed, 16 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..979882404 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,9 @@ +name: ci +on: [push, pull_request] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: gradle/wrapper-validation-action@v1 + - run: ./gradlew build diff --git a/README.md b/README.md index a5169b481..1d545a27d 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ +# smali + +[![ci][1]][2] + ### About smali/baksmali is an assembler/disassembler for the dex format used by dalvik, Android's Java VM implementation. The syntax is loosely based on Jasmin's/dedexer's syntax, and supports the full functionality of the dex format (annotations, debug info, line info, etc.) @@ -17,3 +21,6 @@ See [the wiki](https://github.com/JesusFreke/smali/wiki) for more info/news/rele - [Registers wiki page](https://github.com/JesusFreke/smali/wiki/Registers) - [Types, Methods and Fields wiki page](https://github.com/JesusFreke/smali/wiki/TypesMethodsAndFields) - [Official dex format reference](https://source.android.com/devices/tech/dalvik/dex-format.html) + +[1]: https://github.com/JesusFreke/smali/workflows/ci/badge.svg +[2]: https://github.com/JesusFreke/smali/actions