Skip to content

Add allow-all robots.txt for Vercel site #91

Add allow-all robots.txt for Vercel site

Add allow-all robots.txt for Vercel site #91

Workflow file for this run

name: Rust CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: Check pattern evidence
run: python3 scripts/check_evidence.py
- name: Check formatting
run: cargo fmt -- --check
- name: Lint code
run: cargo clippy -- -D warnings
- name: Run tests
run: cargo test --verbose