Skip to content

feat: add cloche studio, a local page for picking backdrops by eye #86

feat: add cloche studio, a local page for picking backdrops by eye

feat: add cloche studio, a local page for picking backdrops by eye #86

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- 'docs/**'
- '*.md'
- 'LICENSE'
- '.gitignore'
branches:
- master
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
- 'LICENSE'
- '.gitignore'
workflow_dispatch:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
name: Check (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Format
run: cargo fmt --check
- name: Clippy
run: cargo clippy --all-targets -- -D warnings
- name: Test
run: cargo test
msrv:
name: MSRV (1.88)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install Rust 1.88
uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.88"
- name: Check
run: cargo check --all-targets