Skip to content

Bugfix: "\r", "\n" and "\t" were not escaped correctly when writing f… #69

Bugfix: "\r", "\n" and "\t" were not escaped correctly when writing f…

Bugfix: "\r", "\n" and "\t" were not escaped correctly when writing f… #69

Workflow file for this run

name: Rust build & test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build
- name: Run tests
env:
RUST_BACKTRACE: 1
run: cargo test