Skip to content

Replace public license to AAAPL #15

Replace public license to AAAPL

Replace public license to AAAPL #15

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Check & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
- name: Clippy (all features)
run: cargo clippy --all-features -- -D warnings
- name: Test (all features)
run: cargo test --all-features
- name: Build (default features)
run: cargo build
- name: Build (github feature)
run: cargo build --features github