Skip to content

Actually fetch and parse the error body responses #51

Actually fetch and parse the error body responses

Actually fetch and parse the error body responses #51

Workflow file for this run

name: Main
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Podman
run: |
# sudo apt-get install -y podman
podman --version
systemctl --user enable --now podman.socket
systemctl --user status podman.socket
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- uses: taiki-e/install-action@v2
with:
tool: cargo-rdme
- name: Format
run: cargo fmt --check
- name: README sync
run: cargo rdme --check
- name: Build
run: cargo build --verbose
- name: Tests
run: cargo test --verbose