Skip to content

Commit

Permalink
Merge pull request #112 from lppedd/chore/readme
Browse files Browse the repository at this point in the history
Fix badge and missing curly bracket in README
  • Loading branch information
ftomassetti authored Dec 7, 2023
2 parents 9ad8927 + c2f4f76 commit 16b7aaf
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,16 @@ name: Build
on:
push:
branches: [ 'master' ]
paths-ignore:
- '**/README.md'
- '**/.editorconfig'
- '**/.gitignore'
pull_request:
branches: [ 'master' ]
paths-ignore:
- '**/README.md'
- '**/.editorconfig'
- '**/.gitignore'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# ANTLR Kotlin

[![Build Status](https://github.com/Strumenta/antlr-kotlin/workflows/BuildAndTest/badge.svg)](https://github.com/Strumenta/kolasu/actions) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.strumenta/antlr-kotlin/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.strumenta/antlr-kotlin)
[![Build Status](https://github.com/Strumenta/antlr-kotlin/workflows/Build/badge.svg)](https://github.com/Strumenta/antlr-kotlin/actions)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.strumenta/antlr-kotlin/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.strumenta/antlr-kotlin)
[![License Apache-2.0](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](LICENSE)

This project contains everything needed to support Kotlin as a target for ANTLR.
Expand Down Expand Up @@ -102,10 +103,11 @@ To start using ANTLR Kotlin:
```kotlin
tasks {
generateGrammarSource {
// The default task is set up considering a Java source set,
// which we might not have in a Kotlin project.
// Using it is messier than simply registering a new task
enabled = false
// The default task is set up considering a Java source set,
// which we might not have in a Kotlin project.
// Using it is messier than simply registering a new task
enabled = false
}
}
```

Expand Down

0 comments on commit 16b7aaf

Please sign in to comment.