Skip to content

chore: add a large code generator script #33

chore: add a large code generator script

chore: add a large code generator script #33

Workflow file for this run

name: Raven CI
on:
push:
branches: [ "main" ]
paths:
- "src/**"
- "lib/**"
- "examples/**"
- "tests/**"
- "Cargo.toml"
- "Cargo.lock"
- ".github/workflows/ci.yml"
pull_request:
branches: [ "main" ]
paths:
- "src/**"
- "lib/**"
- "examples/**"
- "tests/**"
- "Cargo.toml"
- "Cargo.lock"
- ".github/workflows/ci.yml"
env:
CARGO_TERM_COLOR: always
jobs:
format:
runs-on: ubuntu-latest
defaults:
run:
working-directory: .
steps:
- uses: actions/checkout@v4
- name: Format
run: cargo fmt --check
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: .
steps:
- uses: actions/checkout@v4
- name: Lint
run: cargo clippy
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: .
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose