Skip to content

Feat/refactor

Feat/refactor #2

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
permissions: read-all
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Clippy - Rust linter
- name: Install Rust toolchain
run: rustup toolchain install stable
- name: Run Clippy
run: rustup component add clippy && cargo clippy -- -D warnings
# Ruff - Python linter
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install Ruff
run: pip install ruff
- name: Run Ruff
run: ruff .
# Python unittests
- name: Install project dependencies
run: pip install -r requirements.txt
- name: Run unittests
run: python -m unittest discover -s tests -p '*.py'
# Build and test steps for Rust
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose