Skip to content

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

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

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

Workflow file for this run

---
name: ci
on:
pull_request:
branches:
- main
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo test --all-features --workspace
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install nightly
- run: rustup component add rustfmt --toolchain nightly
- run: cargo +nightly fmt -- --check
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo doc