mirror of
https://github.com/callumio/suck.git
synced 2025-12-17 03:29:21 +00:00
initial commit
This commit is contained in:
commit
59d7953aad
16 changed files with 391 additions and 0 deletions
51
.github/workflows/ci.yml
vendored
Normal file
51
.github/workflows/ci.yml
vendored
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
name: CI
|
||||
permissions:
|
||||
contents: read
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
merge_group:
|
||||
|
||||
env:
|
||||
RUST_MIN: "1.85"
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: Run tests
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- name: Install Rust stable
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
toolchain: stable
|
||||
- uses: Swatinem/rust-cache@v2
|
||||
- name: Minimal build
|
||||
run: cargo build --no-default-features
|
||||
- name: Clippy
|
||||
run: cargo clippy --all-features --examples -- -D warnings
|
||||
- name: Build all
|
||||
run: cargo build --all-features --examples
|
||||
- name: Test
|
||||
run: |
|
||||
cargo test --all-features
|
||||
|
||||
lint:
|
||||
name: "Lint"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- name: Install Rust nightly
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
toolchain: nightly
|
||||
components: rustfmt
|
||||
- name: Check typos
|
||||
uses: crate-ci/typos@master
|
||||
- name: rustfmt
|
||||
run: cargo +nightly fmt --all --check
|
||||
Loading…
Add table
Add a link
Reference in a new issue