Skip to content

Commit

Permalink
Add GitHub workflow and update README
Browse files Browse the repository at this point in the history
tests: add workflow for builds/tests
docs: update README.md
  • Loading branch information
nsbuitrago committed Mar 14, 2024
1 parent 7c4b892 commit 2defee2
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Test

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# libparasail-sys

[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/nsbuitrago/libparasail-sys/test.yml)](https://github.com/nsbuitrago/parasail-rs/actions/workflows/test.yml) [![docs.rs](https://img.shields.io/docsrs/libparasail-sys)](https://docs.rs/libparasail-sys/latest/libparasail_sys/index.html) [![Crates.io Version](https://img.shields.io/crates/v/libparasail-sys)](https://crates.io/crates/libparasail-sys)

This crate provides unsafe Rust bindings for [parasail](https://github.com/jeffdaily/parasail). You might be interested in [parasail-rs](https://gitlab.com/nsbuitrago/parasail-rs), which provides safe Rust bindings and a wrapper to parasail.

Note that [parasail-sys](https://github.com/anp/parasail-sys) similarly provides unsafe Rust bindings, but has been archived since 2020.
Expand Down

0 comments on commit 2defee2

Please sign in to comment.