Skip to content

Commit

Permalink
feat!: significant rewrite, including new options, frame processing, …
Browse files Browse the repository at this point in the history
…testing & documentation (#63)
  • Loading branch information
calteran authored Sep 6, 2024
2 parents 458faab + b709b0b commit 54130d7
Show file tree
Hide file tree
Showing 65 changed files with 2,823 additions and 702 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#file: noinspection SpellCheckingInspection
name: CI

on:
Expand All @@ -23,6 +24,22 @@ jobs:
run: cargo test
- name: docs
run: cargo doc --no-deps
coverage:
runs-on: ubuntu-latest
container:
image: xd009642/tarpaulin:develop-nightly
options: --security-opt seccomp=unconfined
steps:
- name: checkout
uses: actions/checkout@v4
- name: generate coverage
run: |
cargo +nightly tarpaulin --verbose --all-features --workspace --timeout 120 --out xml
- name: upload coverage
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
enforce-clean-code:
runs-on: ubuntu-latest
steps:
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
# Ignore any sample files, except for .jpg that don't have _bordered in the name
samples/*
!samples/*.jpg
samples/*_bordered.jpg
!samples/*.png
samples/*_bordered*

# Generated by Cargo
# will have compiled files and executables
Expand Down
Loading

0 comments on commit 54130d7

Please sign in to comment.