Skip to content

Commit

Permalink
Enable basic GitHub Actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
friederbluemle committed Mar 6, 2020
1 parent b761c5f commit a53b5af
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.)
Expand All @@ -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

0 comments on commit a53b5af

Please sign in to comment.