Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirgamalyan committed Nov 30, 2021
2 parents a37a9e0 + 222cbc1 commit 87645f7
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 4 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: ci

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: cmake
run: cmake -DCMAKE_CXX_FLAGS=-Werror .

- name: make
run: make

- name: release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/v')
with:
files: fontbm
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# fontbm

[BMFont](http://www.angelcode.com/products/bmfont/) compatible, cross-platform (lin/win/mac) command line bitmap font generator.
[BMFont](http://www.angelcode.com/products/bmfont/) compatible, cross-platform (linux/windows/mac) command line bitmap font generator.

![sample](/.github/img/sample0.png?raw=true)
![sample](/.github/img/sample1.png?raw=true)

## Status

| Linux/macOS | Windows | Quality |
|-------|---------|---------|
| [![Build Status](https://travis-ci.org/vladimirgamalyan/fontbm.svg)](https://travis-ci.org/vladimirgamalyan/fontbm) | [![Build status](https://ci.appveyor.com/api/projects/status/boq0olngopfabaac?svg=true)](https://ci.appveyor.com/project/vladimirgamalyan/fontbm) | [![Codacy Badge](https://api.codacy.com/project/badge/Grade/1771a443586e472393c33f3c5fddaf3a)](https://www.codacy.com/manual/vladimirgamalyan/fontbm?utm_source=github.com&utm_medium=referral&utm_content=vladimirgamalyan/fontbm&utm_campaign=Badge_Grade) |
| Linux | Windows |
|-------|---------|
| [![Actions Status](https://github.com/vladimirgamalyan/fontbm/workflows/ci/badge.svg)](https://github.com/vladimirgamalyan/fontbm/actions) | [![Build status](https://ci.appveyor.com/api/projects/status/boq0olngopfabaac?svg=true)](https://ci.appveyor.com/project/vladimirgamalyan/fontbm) |

## Usage

Expand Down

0 comments on commit 87645f7

Please sign in to comment.