Skip to content

feat: add an imports reader and __all__ fixer #5

feat: add an imports reader and __all__ fixer

feat: add an imports reader and __all__ fixer #5

Workflow file for this run

name: Rust CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Checkout code
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Run rustfmt
run: cargo fmt -- --check
- name: Run clippy
run: cargo clippy -- -D warnings
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose