Skip to content

0.6.0 more image compare options and bugfix #187

0.6.0 more image compare options and bugfix

0.6.0 more image compare options and bugfix #187

Workflow file for this run

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
fail-fast: true
matrix:
include:
- os: ubuntu-latest
- os: windows-latest
- os: macos-latest
name: rust-ci ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --release --verbose
- name: Run check
run: cargo check --verbose
- name: Run clippy
run: cargo clippy --verbose