Skip to content

Do not rollback branch state in case of a merge failure #17

Do not rollback branch state in case of a merge failure

Do not rollback branch state in case of a merge failure #17

Workflow file for this run

name: CI
on:
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --all-targets
- name: Check formatting
run: cargo fmt --all --check