Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Actions badges to README, correct existing badge and link #131

Merged
merged 1 commit into from
Nov 11, 2023
Merged
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
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Automa.jl

[![Docs Latest](https://img.shields.io/badge/docs-latest-blue.svg)](https://biojulia.github.io/Automa.jl/stable/)
[![Unit tests Status](https://github.com/BioJulia/Automa.jl/actions/workflows/UnitTests.yml/badge.svg)](https://github.com/BioJulia/Automa.jl/actions/workflows/UnitTests.yml)
[![Downstream tests Status](https://github.com/BioJulia/Automa.jl/actions/workflows/Downstream.yml/badge.svg)](https://github.com/BioJulia/Automa.jl/actions/workflows/Downstream.yml)
[![Docs Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://biojulia.github.io/Automa.jl/stable/)
[![codecov.io](http://codecov.io/github/BioJulia/Automa.jl/coverage.svg?branch=master)](http://codecov.io/github/BioJulia/Automa.jl?branch=master)

Automa is a regex-to-Julia compiler.
Expand All @@ -12,10 +14,10 @@ You can view Automa as a regex engine that can insert arbitrary Julia code into

Automa is designed to generate very efficient code to scan large text data, often much faster than handcrafted code.

For more information [read the documentation](https://biojulia.github.io/Automa.jl/latest/), or read the examples below and in the `examples/` directory in this repository.
For more information [read the documentation](https://biojulia.github.io/Automa.jl/stable/), or read the examples below and in the `examples/` directory in this repository.

## Examples
### Validate some text only is composed of ASCII alphanumeric characters
### Validate some text is composed only of ASCII alphanumeric characters
```julia
using Automa

Expand Down
Loading