Skip to content

chore: exclude test_output_twocolumn/ from git tracking #32

chore: exclude test_output_twocolumn/ from git tracking

chore: exclude test_output_twocolumn/ from git tracking #32

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends poppler-utils
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo artifacts
uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --locked
- name: Test
run: cargo test --locked