Skip to content

Bump resvg from 0.39.0 to 0.40.0 #159

Bump resvg from 0.39.0 to 0.40.0

Bump resvg from 0.39.0 to 0.40.0 #159

Workflow file for this run

name: PR check
on:
pull_request:
workflow_dispatch:
workflow_call:
env:
SQLX_OFFLINE: true
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Check out code into the proper directory
uses: actions/checkout@v4
- name: Install cargo
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache rust
uses: Swatinem/rust-cache@v2
- name: Check Rust formatting
run: cargo fmt --check
- name: Install prettier
run: npm install
- name: Check web formatting
run: npm run prettier-check
- name: Check build
run: cargo clippy
- name: Run tests
run: cargo test