add pre-commit, fix python formatting #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update local toolchain | |
run: | | |
rustup update | |
rustup component add clippy | |
rustup install stable | |
pipx install ruff | |
- name: Toolchain info | |
run: | | |
cargo --version --verbose | |
rustc --version | |
cargo clippy --version | |
- name: Lint | |
run: | | |
cargo fmt -- --check | |
cargo clippy -- --deny warnings | |
ruff check --no-fix | |
ruff format --check | |
- name: Rust Test | |
run: | | |
cargo check | |
cargo test | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Python Tests | |
run: | | |
python -m venv env | |
source env/bin/activate | |
pip install '.[test]' | |
pytest python-tests |