Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Implemented GitHub Actions support #18

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v1

- name: cmake
run: cmake .

- name: make
run: make -j4
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
JniHelpers
==========

![Build](https://github.com/leozz37/JniHelpers/workflows/Build/badge.svg)

JniHelpers is a library designed to facilitate writing JNI code with C++.
It provides the following features:

Expand Down