Skip to content

feat!: Add now(); remove chrono integration for now. (#15) #3

feat!: Add now(); remove chrono integration for now. (#15)

feat!: Add now(); remove chrono integration for now. (#15) #3

Workflow file for this run

---
name: coverage
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
name: coverage
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install tarpaulin.
run: cargo install cargo-tarpaulin
- name: Generate code coverage
run: |
cargo tarpaulin --verbose --out xml --engine llvm --features serde,easter
env:
CARGO_NET_GIT_FETCH_WITH_CLI: true
- name: Upload to codecov.io
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: lukesneeringer/unix-ts
fail_ci_if_error: true