Skip to content

Commit

Permalink
ci: add assemble workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
euisong-jung-navercorp committed Nov 28, 2024
1 parent 399d5f0 commit ac03b19
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: 'Assemble samples'

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
name: ${{ github.event.pull_request.title || github.event.head_commit.message }}

steps:
- uses: actions/checkout@v4
- name: set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Build with Gradle
run: ./gradlew assembleDebug
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: 'Spotless check'

on:
schedule:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Naver Ad Manager SDK for Android

![Maven Central](https://img.shields.io/maven-central/v/com.naver.gfpsdk/nam-core)
![Maven Central](https://img.shields.io/maven-central/v/com.naver.gfpsdk/nam-core) ![latest build](https://github.com/naver/nam-sdk-android/actions/workflows/android.yml/badge.svg)

Integrating the `Naver Ad Manager(NAM) SDK` into an app is the first step toward displaying ads and earning revenue. Once you've integrated the SDK,
you can choose an ad format (such as banner or native or rewarded or interstitial) and follow the steps to implement it.
Expand Down

0 comments on commit ac03b19

Please sign in to comment.