feat: allow chainfile argument to be passed to Converter (#26) #90
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: Checks | |
on: [push, pull_request] | |
jobs: | |
python-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
run: python3 -m pip install ".[dev]" | |
- name: Check style | |
run: python3 -m ruff check . && ruff format --check . | |
rust-lint: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./rust | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update Rust | |
run: rustup update stable && rustup default stable | |
- name: Install rustfmt | |
run: rustup component add rustfmt | |
- run: cargo fmt -- --check | |
unit-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: python3 -m pip install ".[tests]" | |
- name: Run tests | |
run: python3 -m pytest tests/ |