Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yegor256/bibcop-action
Automated checking of BibTeX .bib files for style correctness (with the help of bibcop from CTAN)
https://github.com/yegor256/bibcop-action
bibtex github-action github-actions latex static-analysis
Last synced: 2 months ago
JSON representation
Automated checking of BibTeX .bib files for style correctness (with the help of bibcop from CTAN)
- Host: GitHub
- URL: https://github.com/yegor256/bibcop-action
- Owner: yegor256
- License: mit
- Created: 2024-03-17T12:40:33.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-10-22T09:11:45.000Z (3 months ago)
- Last Synced: 2024-10-23T13:50:09.135Z (3 months ago)
- Topics: bibtex, github-action, github-actions, latex, static-analysis
- Language: Dockerfile
- Homepage:
- Size: 67.4 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Bibcop Github Action
[![test](https://github.com/yegor256/bibcop-action/actions/workflows/test.yml/badge.svg)](https://github.com/yegor256/bibcop-action/actions/workflows/test.yml)
[![License](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/yegor256/bibcop-action/blob/master/LICENSE.txt)Checks the quality of all BibTeX `.bib` files in the repository,
using [bibcop](https://github.com/yegor256/bibcop).```yaml
name: bibcop
on:
push:
pull_request:
jobs:
bibcop:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@master
- uses: yegor256/[email protected]
```## How to Contribute
In order to test this action, just run:
```bash
make test
```This should build a new Docker image and then try to use it
in order to render a simple `test.tex` document. You need to have
[Docker](https://docs.docker.com/get-docker/) installed.