Skip to content

feat: add xxhash

feat: add xxhash #64

Workflow file for this run

name: test
on:
push:
branches: [ "main" ]
paths:
- '**.rs'
- 'src/**.rs'
pull_request:
branches: [ "main" ]
paths:
- '**.rs'
- 'src/**.rs'
env:
CI: true
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install tarpaulin
run: cargo install --locked cargo-tarpaulin
- name: Run build
run: cargo build --locked
- name: Run clippy
run: cargo clippy --all-targets --all-features --no-deps -- -D warnings
- name: Run lint
run: cargo fmt -- --check
- name: Run tests
run: cargo tarpaulin --locked --out xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
file: ./cobertura.xml