Skip to content

Oh, it's not meant to be in serviceConfig #108

Oh, it's not meant to be in serviceConfig

Oh, it's not meant to be in serviceConfig #108

Workflow file for this run

on: push
env:
CARGO_TERM_COLOR: always
SQLX_OFFLINE: "true"
jobs:
cargo:
name: Cargo
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: swatinem/rust-cache@v2
- run: |
cargo fmt --check
cargo clippy --all-features --message-format=json-diagnostic-rendered-ansi | jq -r 'select(.reason == "compiler-message").message | . as {message: $message, level: $level, rendered: $rendered} | .spans[] | select(.is_primary == true) | "::" + $level + " file=" + .file_name + ",col=" + (.column_start | tostring) + ",endColumn=" + (.column_end | tostring) + ",line=" + (.line_start | tostring) + ",endLine=" + (.line_end | tostring) + "::" + $message + "\n" + $rendered'
exit ${PIPESTATUS[0]}