Skip to content

Support multiple enter #153

Support multiple enter

Support multiple enter #153

Workflow file for this run

name: Build and Test
on:
push:
branches: ["main"]
paths-ignore:
- README.md
- website/**
- .github/workflows/publish-website.yml
pull_request:
branches: ["main"]
paths-ignore:
- README.md
- website/**
- .github/workflows/publish-website.yml
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install musl tools
run: sudo apt-get install -y musl-tools
- name: Build
run: cargo build
- name: Run tests
run: cargo test
- name: Check formatting
run: cargo fmt --check
- name: Run linting
run: cargo clippy