Skip to content

Commit 55cd4cd

Browse files
committed
Code highlighting in README
1 parent f8f0728 commit 55cd4cd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ It is recommended to run this action on a **macOS** VM, e.g. `macos-latest`, `ma
2626

2727
A workflow that uses **android-emulator-runner** to run your instrumented tests on **API 29**:
2828

29-
```
29+
```yml
3030
jobs:
3131
test:
3232
runs-on: macos-latest
@@ -43,7 +43,7 @@ jobs:
4343
4444
We can also leverage GitHub Actions's build matrix to test across multiple configurations:
4545
46-
```
46+
```yml
4747
jobs:
4848
test:
4949
runs-on: macos-latest
@@ -67,7 +67,7 @@ jobs:
6767
6868
If you need specific versions of **NDK** and **CMake** installed:
6969
70-
```
70+
```yml
7171
jobs:
7272
test:
7373
runs-on: macos-latest
@@ -90,7 +90,7 @@ We can significantly reduce emulator startup time by setting up AVD snapshot cac
9090
2. add a `reactivecircus/android-emulator-runner@v2` step to generate a clean snapshot - specify `emulator-options` without `no-snapshot`
9191
3. add another `reactivecircus/android-emulator-runner@v2` step to run your tests using existing AVD / snapshot - specify `emulator-options` with `no-snapshot-save`
9292

93-
```
93+
```yml
9494
jobs:
9595
test:
9696
runs-on: macos-latest

0 commit comments

Comments
 (0)