Skip to content

Fixed EntrySource can't be created with an iterator (v0.2.2) #12

Fixed EntrySource can't be created with an iterator (v0.2.2)

Fixed EntrySource can't be created with an iterator (v0.2.2) #12

Workflow file for this run

name: Run CI
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Set up Rust
uses: actions/checkout@v4
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run clippy
run: cargo clippy --verbose -- -D warnings
- name: Run audit
run: cargo audit