Skip to content

Merge pull request #6 from stevent-team/fix/webp-image-format-errors #16

Merge pull request #6 from stevent-team/fix/webp-image-format-errors

Merge pull request #6 from stevent-team/fix/webp-image-format-errors #16

Workflow file for this run

name: Check
on:
pull_request:
paths:
- src/**
- Cargo.lock
- Cargo.toml
- .github/workflows/check.yml
push:
branches:
- main
paths:
- src/**
- Cargo.lock
- Cargo.toml
- .github/workflows/check.yml
# Fail on warnings
env:
RUSTFLAGS: "-Dwarnings"
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cargo clippy --all-features
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cargo test --all-features