Skip to content

Change license to MIT OR Apache-2.0 #22

Change license to MIT OR Apache-2.0

Change license to MIT OR Apache-2.0 #22

Workflow file for this run

name: serde_rusqlite
on:
push:
branches:
- "*"
tags_ignore:
- "*"
pull_request:
branches:
- "*"
jobs:
ci:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Clippy
run: cargo clippy --workspace --all-targets --all-features --tests -- -D warnings
- name: Test
run: cargo test --workspace --all-targets --all-features