Skip to content

Add XLIFF 1.2 support to core #107

Add XLIFF 1.2 support to core

Add XLIFF 1.2 support to core #107

Workflow file for this run

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
name: Clippy check
permissions:
contents: read
# Make sure CI fails on all warnings, including Clippy lints
env:
RUSTFLAGS: "-Dwarnings"
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust (stable)
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy
- name: Run Clippy
run: cargo clippy --workspace --all-targets --all-features